summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-08-11 07:21:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-08-11 07:21:01 +0000
commit55ac4e14f725e24e06380f44a0f48d774e6024e6 (patch)
tree35f0d0f0036bc0f90f5198bf6d2becd0bd091b8e /c
parent2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-55ac4e14f725e24e06380f44a0f48d774e6024e6.tar.bz2
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
Diffstat (limited to 'c')
-rw-r--r--c/src/ChangeLog4
-rw-r--r--c/src/wrapup/Makefile.am4
2 files changed, 6 insertions, 2 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index 3015b8f11e..2352db2fce 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,5 +1,9 @@
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
+
+2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* configure.ac: Add BSP_SUBDIRS.
* Makefile.am: Use BSP_SUBDIRS to setup SUBDIRS.
diff --git a/c/src/wrapup/Makefile.am b/c/src/wrapup/Makefile.am
index 50908995f9..740b6bf7fe 100644
--- a/c/src/wrapup/Makefile.am
+++ b/c/src/wrapup/Makefile.am
@@ -28,7 +28,7 @@ SRCS = $(LIBBSP) $(LIBNETWORKING) $(LIBRDBG) \
../libchip/serial/$(ARCH)/libserialio.a \
$(wildcard $(PROJECT_RELEASE)/lib/libnetchip$(LIB_VARIANT).a) \
../libmisc/wrapup/$(ARCH)/libmisc.a \
- $(wildcard $(PROJECT_RELEASE)/lib/rtems-ctor$(LIB_VARIANT).o)
+ $(wildcard $(PROJECT_RELEASE)/lib/rtems-ctor$(LIB_VARIANT).$(OBJEXT))
TMPINSTALL_FILES += $(LIB)
@@ -40,7 +40,7 @@ $(LIB): $(SRCS)
test -d $(ARCH) || mkdir $(ARCH)
for f in $(SRCS); do \
case $$f in \
- *.o | *.rel) \
+ *.$(OBJEXT) | *.rel) \
if test -f $(ARCH)/`basename $$f`; then \
if cmp $$f $(ARCH)/`basename $$f`; then \
true; \