summaryrefslogtreecommitdiffstats
path: root/c/src
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-08-11 05:58:11 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-08-11 05:58:11 +0000
commit2f6a4b34053dd8dd1a44202f32e564bf6602c6d1 (patch)
tree0299f285d8de5eebf7d21346ebf7adf43a34e252 /c/src
parent2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-2f6a4b34053dd8dd1a44202f32e564bf6602c6d1.tar.bz2
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* rtems/Makefile.am: Use .$(OBJEXT) instead of .o. * sapi/Makefile.am: Use .$(OBJEXT) instead of .o.
Diffstat (limited to 'c/src')
-rw-r--r--c/src/optman/ChangeLog5
-rw-r--r--c/src/optman/rtems/Makefile.am2
-rw-r--r--c/src/optman/sapi/Makefile.am2
3 files changed, 7 insertions, 2 deletions
diff --git a/c/src/optman/ChangeLog b/c/src/optman/ChangeLog
index 7eeff660ae..70054afa6e 100644
--- a/c/src/optman/ChangeLog
+++ b/c/src/optman/ChangeLog
@@ -1,3 +1,8 @@
+2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * rtems/Makefile.am: Use .$(OBJEXT) instead of .o.
+ * sapi/Makefile.am: Use .$(OBJEXT) instead of .o.
+
2002-07-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* sapi/Makefile.am: Add bsplib_DATA = $(PGMS).
diff --git a/c/src/optman/rtems/Makefile.am b/c/src/optman/rtems/Makefile.am
index 387c7600e6..e594949876 100644
--- a/c/src/optman/rtems/Makefile.am
+++ b/c/src/optman/rtems/Makefile.am
@@ -5,7 +5,7 @@
C_FILES = no-dpmem.c no-event.c no-msg.c no-mp.c no-part.c no-region.c \
no-rtmon.c no-sem.c no-signal.c no-timer.c
-C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
+C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
PGMS = $(C_FILES:%.c=$(ARCH)/%.rel)
diff --git a/c/src/optman/sapi/Makefile.am b/c/src/optman/sapi/Makefile.am
index 1ee1e28c2e..1a1ca0e893 100644
--- a/c/src/optman/sapi/Makefile.am
+++ b/c/src/optman/sapi/Makefile.am
@@ -4,7 +4,7 @@
C_FILES = no-ext.c no-io.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
PGMS = $(C_FILES:%.c=$(ARCH)/%.rel)