summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-23 13:39:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-23 13:39:29 +0000
commitc94eb25b5c7e27385abd7ef8c068633342ae70bb (patch)
tree37213ea9899f96c013d5a2387ebd9ab880a228d6 /testsuites/psxtests/psxhdrs
parentPatch rtems-rc-19991117-12.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-c94eb25b5c7e27385abd7ef8c068633342ae70bb.tar.bz2
Patch rtems-rc-19991117-14.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>
to convert the psxtests directory from Makefile.in to Makefile.am.
Diffstat (limited to 'testsuites/psxtests/psxhdrs')
-rw-r--r--testsuites/psxtests/psxhdrs/Makefile.am42
1 files changed, 42 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxhdrs/Makefile.am b/testsuites/psxtests/psxhdrs/Makefile.am
new file mode 100644
index 0000000000..79fc781465
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/Makefile.am
@@ -0,0 +1,42 @@
+##
+## $Id$
+##
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+# C source names
+UNUSED_C_FILES = clock06.c
+
+C_FILES = clock01.c clock02.c clock03.c clock04.c clock05.c cond01.c \
+ cond02.c cond03.c cond04.c cond05.c cond06.c cond07.c cond08.c cond09.c \
+ cond10.c key01.c key02.c key03.c key04.c mutex01.c mutex02.c mutex03.c \
+ mutex04.c mutex05.c mutex06.c mutex07.c mutex08.c mutex09.c mutex10.c \
+ mutex11.c mutex12.c mutex13.c mutex14.c mutex15.c mutex16.c pthread01.c \
+ pthread02.c pthread03.c pthread04.c pthread05.c pthread06.c pthread07.c \
+ pthread08.c pthread09.c pthread10.c pthread11.c pthread12.c pthread13.c \
+ pthread14.c pthread15.c pthread16.c pthread17.c pthread18.c pthread19.c \
+ pthread20.c pthread21.c pthread22.c pthread23.c pthread24.c pthread25.c \
+ pthread26.c pthread27.c pthread28.c pthread29.c pthread30.c pthread31.c \
+ pthread32.c pthread33.c pthread34.c pthread35.c pthread36.c proc01.c \
+ proc02.c proc03.c proc04.c proc05.c proc06.c proc07.c proc08.c proc09.c \
+ proc10.c proc11.c proc12.c proc13.c proc14.c sched01.c sched02.c \
+ sched03.c sched04.c sched05.c sched06.c sched07.c sched08.c signal01.c \
+ signal02.c signal03.c signal04.c signal05.c signal06.c signal07.c \
+ signal08.c signal09.c signal10.c signal11.c signal12.c signal13.c \
+ signal14.c signal15.c signal16.c signal17.c signal18.c signal19.c \
+ signal20.c signal21.c signal22.c time01.c time02.c time03.c time04.c \
+ time05.c time06.c time07.c time08.c time09.c time10.c time11.c time12.c \
+ time13.c timer01.c timer02.c timer03.c timer04.c timer05.c timer06.c
+C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
+
+SRCS = $(C_FILES)
+OBJS = $(C_O_FILES)
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(RTEMS_ROOT)/make/leaf.cfg
+
+all-local: ${ARCH} ${OBJS}
+
+EXTRA_DIST = $(C_FILES) $(UNUSED_C_FILES)
+
+include $(top_srcdir)/../../../../automake/local.am