summaryrefslogtreecommitdiffstats
path: root/testsuites/automake/subdirs.am
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-04-26 14:00:41 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-09-21 07:39:09 +0200
commitdb8f598d56951cf43f22a5e325e0d23c8f7559f9 (patch)
tree607bc2e2c842bb932bce53efc7423e73ef18f6ff /testsuites/automake/subdirs.am
parentarm/lpc24xx: Use common test definition file (diff)
downloadrtems-db8f598d56951cf43f22a5e325e0d23c8f7559f9.tar.bz2
build: Remove old build system
Close #3250. Close #4081.
Diffstat (limited to '')
-rw-r--r--testsuites/automake/subdirs.am28
1 files changed, 0 insertions, 28 deletions
diff --git a/testsuites/automake/subdirs.am b/testsuites/automake/subdirs.am
deleted file mode 100644
index a566774bab..0000000000
--- a/testsuites/automake/subdirs.am
+++ /dev/null
@@ -1,28 +0,0 @@
-## Borrowed from automake/subdir.am which borrowed automake-1.4 and adapted to RTEMS
-
-## NOTE: This is a temporary work-around until automake is removed from RTEMS.
-## It is a hack within many hacks and is designed to keep the source as clean
-## as possible.
-
-define TESTDIR
-.PHONY: $1
-$1:
- @+set fnord $(MAKEFLAGS); \
- if test "$(1)" != "."; then \
- target=`echo $(MAKECMDGOALS) | sed s/-recursive//`; \
- if test "$$$$target" = "all-local-am"; then \
- target="all-am"; \
- fi; \
- if test "$$$$target" = "all-local"; then \
- target="all"; \
- fi; \
- echo "Making $$$$target in $(1)"; \
- cd $(1); \
- $(MAKE) $(AM_MAKEFLAGS) TEST_FLAGS="$$$$test_FLAGS" $$$$target; \
- fi;
-endef
-
-$(foreach T,$(_SUBDIRS),$(eval $(call TESTDIR,$(strip $(T)))))
-
-all-local: $(_SUBDIRS)
-clean-local: $(_SUBDIRS)