summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/cdtest
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-08-11 05:18:59 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-08-11 05:18:59 +0000
commitfef95c563ba5fdda3c6879cc6524c5e53ae71b2e (patch)
treef892388e5d2a9e97e2fa69664102da384db1040e /testsuites/samples/cdtest
parent2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-fef95c563ba5fdda3c6879cc6524c5e53ae71b2e.tar.bz2
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* base_mp/node1/Makefile.am: Use .$(OBJEXT) instead of .o. * base_mp/node2/Makefile.am: Use .$(OBJEXT) instead of .o. * base_sp/Makefile.am: Use .$(OBJEXT) instead of .o. * cdtest/Makefile.am: Use .$(OBJEXT) instead of .o. * hello/Makefile.am: Use .$(OBJEXT) instead of .o. * minimum/Makefile.am: Use .$(OBJEXT) instead of .o. * paranoia/Makefile.am: Use .$(OBJEXT) instead of .o. * ticker/Makefile.am: Use .$(OBJEXT) instead of .o. * unlimited/Makefile.am: Use .$(OBJEXT) instead of .o.
Diffstat (limited to 'testsuites/samples/cdtest')
-rw-r--r--testsuites/samples/cdtest/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/samples/cdtest/Makefile.am b/testsuites/samples/cdtest/Makefile.am
index 934d2ea6e8..45969efbd2 100644
--- a/testsuites/samples/cdtest/Makefile.am
+++ b/testsuites/samples/cdtest/Makefile.am
@@ -9,10 +9,10 @@ PGM = ${ARCH}/$(SAMPLE).exe
MANAGERS = all
C_FILES = init.c
-C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
+C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
CC_FILES = main.cc
-CC_O_FILES = $(CC_FILES:%.cc=${ARCH}/%.o)
+CC_O_FILES = $(CC_FILES:%.cc=${ARCH}/%.$(OBJEXT))
H_FILES = system.h
noinst_HEADERS = $(H_FILES)