summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp09
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/sp09
parent2005-11-13 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b244a05ac318bd2a53c302bf8da09b360e5e7fc1.tar.bz2
Convert to use *_PROGRAMS.
Diffstat (limited to 'testsuites/sptests/sp09')
-rw-r--r--testsuites/sptests/sp09/Makefile.am21
1 files changed, 9 insertions, 12 deletions
diff --git a/testsuites/sptests/sp09/Makefile.am b/testsuites/sptests/sp09/Makefile.am
index 348c1d1d15..993010dc5d 100644
--- a/testsuites/sptests/sp09/Makefile.am
+++ b/testsuites/sptests/sp09/Makefile.am
@@ -5,33 +5,30 @@
MANAGERS = io message dual_ported_memory event multi_processor region \
semaphore signal rate_monotonic timer partition
-noinst_LIBRARIES = lib.a
-lib_a_SOURCES = init.c delay.c isr.c screen01.c screen02.c screen03.c screen04.c \
+rtems_tests_PROGRAMS = sp09.exe
+sp09_exe_SOURCES = init.c delay.c isr.c screen01.c screen02.c screen03.c screen04.c \
screen05.c screen06.c screen07.c screen08.c screen09.c screen10.c \
screen11.c screen12.c screen13.c screen14.c task1.c task2.c task3.c \
task4.c system.h
-testsdir = $(libdir)/tests
-scndir = $(testsdir)
+scndir = $(rtems_testsdir)
dist_scn_DATA = sp09.scn
-docdir = $(testsdir)
+docdir = $(rtems_testsdir)
dist_doc_DATA = sp09.doc
-OBJS = $(lib_a_OBJECTS)
-
-PGM = ${ARCH}/sp09.exe
-
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-$(PGM): ${ARCH}/$(dirstamp)
+sp09_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-tests_SCRIPTS = $(PGM)
+LINK_OBJS = $(sp09_exe_OBJECTS) $(sp09_exe_LDADD)
+LINK_LIBS = $(sp09_exe_LDLIBS)
-$(PGM): $(OBJS) $(LINK_FILES)
+sp09.exe$(EXEEXT): $(sp09_exe_OBJECTS) $(sp09_exe_DEPENDENCIES)
+ @rm -f sp09.exe$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am