summaryrefslogtreecommitdiffstats
path: root/cpukit/itron
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron')
-rw-r--r--cpukit/itron/ChangeLog4
-rw-r--r--cpukit/itron/src/Makefile.am2
2 files changed, 5 insertions, 1 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)