summaryrefslogtreecommitdiffstats
path: root/testsuites/automake
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-13 08:58:29 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-13 08:58:29 +0000
commit82026e392fb8c14ea7291be1181f9a49c39c0fc4 (patch)
tree8cdbe61dffb31716fb4b76ec97703511b3feef56 /testsuites/automake
parentRemove preinstall-am. (diff)
downloadrtems-82026e392fb8c14ea7291be1181f9a49c39c0fc4.tar.bz2
Remove preinstall, preinstall-recursive.
Diffstat (limited to 'testsuites/automake')
-rw-r--r--testsuites/automake/subdirs.am31
1 files changed, 0 insertions, 31 deletions
diff --git a/testsuites/automake/subdirs.am b/testsuites/automake/subdirs.am
index 61e421f18b..ecfd454f9e 100644
--- a/testsuites/automake/subdirs.am
+++ b/testsuites/automake/subdirs.am
@@ -1,32 +1 @@
## $Id$
-
-## Borrowed from automake-1.4 and adapted to RTEMS
-
-## NOTE: This is a temporary work-around to keep
-## RTEMS's non automake standard make targets working.
-## Once automake is fully integrated these make targets
-## and this file will probably be removed
-
-preinstall-recursive:
- @set fnord $(MAKEFLAGS); amf=$$2; \
- dot_seen=no; \
- target=`echo $@ | sed s/-recursive//`; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- dot_seen=yes; \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-## This trick allows "-k" to keep its natural meaning when running a
-## recursive rule.
- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
- done; \
- if test "$$dot_seen" = "no"; then \
- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
- fi; test -z "$$fail"
-
-preinstall: preinstall-recursive
-.PHONY: preinstall-recursive