summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 13:39:14 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 13:39:14 +0000
commit4ca93534875cb3f361657cec9f5bf0d51d78519e (patch)
tree416877d0135eea21cc4bb07230d49d125fbf3783
parent2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-4ca93534875cb3f361657cec9f5bf0d51d78519e.tar.bz2
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/Makefile.am: Use .$(OBJEXT) instead of .o.
-rw-r--r--cpukit/itron/ChangeLog4
-rw-r--r--cpukit/itron/src/Makefile.am2
-rw-r--r--cpukit/libblock/ChangeLog4
-rw-r--r--cpukit/libblock/src/Makefile.am2
-rw-r--r--cpukit/posix/ChangeLog4
-rw-r--r--cpukit/posix/src/Makefile.am2
-rw-r--r--cpukit/sapi/ChangeLog4
-rw-r--r--cpukit/sapi/src/Makefile.am2
8 files changed, 20 insertions, 4 deletions
diff --git a/cpukit/itron/ChangeLog b/cpukit/itron/ChangeLog
index 8628767948..ef88b2b321 100644
--- a/cpukit/itron/ChangeLog
+++ b/cpukit/itron/ChangeLog
@@ -1,5 +1,9 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * src/Makefile.am: Use .$(OBJEXT) instead of .o.
+
+2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* src/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES.
2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
diff --git a/cpukit/itron/src/Makefile.am b/cpukit/itron/src/Makefile.am
index d6c53bfbb0..5fda1e1621 100644
--- a/cpukit/itron/src/Makefile.am
+++ b/cpukit/itron/src/Makefile.am
@@ -41,7 +41,7 @@ C_FILES = $(TASK_C_FILES) $(TASKSYNC_C_FILES) $(SEMAPHORE_C_FILES) \
$(RENDEZVOUS_C_FILES) $(INTERRUPT_C_FILES) \
$(VARIABLE_MEMORY_POOL_C_FILES) $(FIXED_MEMORY_POOL_C_FILES) \
$(TIME_C_FILES)
-C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
+C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/cpukit/libblock/ChangeLog b/cpukit/libblock/ChangeLog
index a64483d8d4..42b89734b1 100644
--- a/cpukit/libblock/ChangeLog
+++ b/cpukit/libblock/ChangeLog
@@ -1,5 +1,9 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * src/Makefile.am: Use .$(OBJEXT) instead of .o.
+
+2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* src/Makefile.am: Eliminate LIBNAME. Cosmetical cleanups.
2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
diff --git a/cpukit/libblock/src/Makefile.am b/cpukit/libblock/src/Makefile.am
index 7d9e5a0b43..d1fdb00223 100644
--- a/cpukit/libblock/src/Makefile.am
+++ b/cpukit/libblock/src/Makefile.am
@@ -6,7 +6,7 @@ LIB = ${ARCH}/libblock.a
C_FILES = bdbuf.c blkdev.c diskdevs.c ramdisk.c
-C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
+C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
SRCS = $(C_FILES)
OBJS = $(C_O_FILES)
diff --git a/cpukit/posix/ChangeLog b/cpukit/posix/ChangeLog
index 4b52ace5b9..6ea7e0d6e8 100644
--- a/cpukit/posix/ChangeLog
+++ b/cpukit/posix/ChangeLog
@@ -1,5 +1,9 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * src/Makefile.am: Use .$(OBJEXT) instead of .o.
+
+2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* src/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES.
2002-07-05 Joel Sherrill <joel@OARcorp.com>
diff --git a/cpukit/posix/src/Makefile.am b/cpukit/posix/src/Makefile.am
index ca9a8a1375..1b853e510b 100644
--- a/cpukit/posix/src/Makefile.am
+++ b/cpukit/posix/src/Makefile.am
@@ -81,7 +81,7 @@ C_FILES = adasupp.c $(CANCEL_C_FILES) $(CONDITION_VARIABLE_C_FILES) \
$(MUTEX_C_FILES) $(PTHREAD_C_FILES) $(PSIGNAL_C_FILES) sched.c \
$(SEMAPHORE_C_FILES) sysconf.c $(TIME_C_FILES) $(TIMER_C_FILES) types.c \
$(ENOSYS_C_FILES) $(BUILD_FOR_NOW_C_FILES)
-C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
+C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/cpukit/sapi/ChangeLog b/cpukit/sapi/ChangeLog
index 17075f75a3..00f5858c5d 100644
--- a/cpukit/sapi/ChangeLog
+++ b/cpukit/sapi/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/Makefile.am: Use .$(OBJEXT) instead of .o.
+
2002-07-04 Joel Sherrill <joel@OARcorp.com>
* Jump table for single entry point removed.
diff --git a/cpukit/sapi/src/Makefile.am b/cpukit/sapi/src/Makefile.am
index a2fc897c85..67632a7964 100644
--- a/cpukit/sapi/src/Makefile.am
+++ b/cpukit/sapi/src/Makefile.am
@@ -7,7 +7,7 @@ EXTENSION_FILES = extension.c extensioncreate.c extensiondelete.c \
extensionident.c
C_FILES = debug.c $(EXTENSION_FILES) fatal.c exinit.c io.c \
itronapi.c posixapi.c rtemsapi.c
-C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
+C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
OBJS = $(C_O_FILES)