summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxtests.am
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/psxtests.am
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/psxtests.am')
-rw-r--r--testsuites/psxtests/psxtests.am23
1 files changed, 23 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxtests.am b/testsuites/psxtests/psxtests.am
new file mode 100644
index 0000000000..15a8e28c9b
--- /dev/null
+++ b/testsuites/psxtests/psxtests.am
@@ -0,0 +1,23 @@
+project_bspdir=$(PROJECT_ROOT)/@RTEMS_BSP@
+
+$(project_bspdir)/tests:
+ @$(mkinstalldirs) $@
+
+$(project_bspdir)/tests/$(TEST)$(LIB_VARIANT).exe: $(PGM)
+ $(INSTALL_PROGRAM) $< $@
+
+$(project_bspdir)/tests/screens:
+ @$(mkinstalldirs) $@
+
+$(project_bspdir)/tests/screens/psxtests:
+ @$(mkinstalldirs) $@
+
+$(project_bspdir)/tests/screens/psxtests/$(TEST).scn: $(TEST).scn
+ $(INSTALL_DATA) $< $@
+
+TMPINSTALL_FILES += \
+$(project_bspdir)/tests \
+$(project_bspdir)/tests/$(TEST)$(LIB_VARIANT).exe \
+$(project_bspdir)/tests/screens \
+$(project_bspdir)/tests/screens/psxtests \
+$(project_bspdir)/tests/screens/psxtests/$(TEST).scn