summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp05
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-13 06:29:38 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-13 06:29:38 +0000
commitb244a05ac318bd2a53c302bf8da09b360e5e7fc1 (patch)
tree5276bbbc10be6ba36e29996cd6663da180da1227 /testsuites/sptests/sp05
parent2005-11-13 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b244a05ac318bd2a53c302bf8da09b360e5e7fc1.tar.bz2
Convert to use *_PROGRAMS.
Diffstat (limited to 'testsuites/sptests/sp05')
-rw-r--r--testsuites/sptests/sp05/Makefile.am21
1 files changed, 9 insertions, 12 deletions
diff --git a/testsuites/sptests/sp05/Makefile.am b/testsuites/sptests/sp05/Makefile.am
index 625d02c671..b31d95cd73 100644
--- a/testsuites/sptests/sp05/Makefile.am
+++ b/testsuites/sptests/sp05/Makefile.am
@@ -4,30 +4,27 @@
MANAGERS = io
-noinst_LIBRARIES = lib.a
-lib_a_SOURCES = init.c task1.c task2.c task3.c system.h
+rtems_tests_PROGRAMS = sp05.exe
+sp05_exe_SOURCES = init.c task1.c task2.c task3.c system.h
-testsdir = $(libdir)/tests
-scndir = $(testsdir)
+scndir = $(rtems_testsdir)
dist_scn_DATA = sp05.scn
-docdir = $(testsdir)
+docdir = $(rtems_testsdir)
dist_doc_DATA = sp05.doc
-OBJS = $(lib_a_OBJECTS)
-
-PGM = ${ARCH}/sp05.exe
-
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-$(PGM): ${ARCH}/$(dirstamp)
+sp05_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-tests_SCRIPTS = $(PGM)
+LINK_OBJS = $(sp05_exe_OBJECTS) $(sp05_exe_LDADD)
+LINK_LIBS = $(sp05_exe_LDLIBS)
-$(PGM): $(OBJS) $(LINK_FILES)
+sp05.exe$(EXEEXT): $(sp05_exe_OBJECTS) $(sp05_exe_DEPENDENCIES)
+ @rm -f sp05.exe$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am