summaryrefslogtreecommitdiffstats
path: root/automake/subdirs.am
diff options
context:
space:
mode:
authorcvs2git <rtems-devel@rtems.org>2000-07-24 17:58:25 +0000
committercvs2git <rtems-devel@rtems.org>2000-07-24 17:58:25 +0000
commit14f1218480f6deec3e93dfbce80816d5706ffb4f (patch)
tree394aaa203b456f4bb9a91c653b96fd019a4063c5 /automake/subdirs.am
parentchanged version to 4.5.0 (diff)
downloadrtems-4.5.0.tar.bz2
This commit was manufactured by cvs2svn to create tag 'rtems-4-5-0'.4.5.0
Sprout from rtems-4-5-branch 2000-07-24 17:58:24 UTC Joel Sherrill <joel.sherrill@OARcorp.com> 'changed version to 4.5.0' Delete: automake/host.am automake/lib.am automake/local.am automake/subdirs.am c/src/lib/libbsp/mips/p4000/liblnk/.cvsignore c/src/librdbg/src/powerpc/new_exception_processing/.cvsignore doc/.cvsignore
Diffstat (limited to 'automake/subdirs.am')
-rw-r--r--automake/subdirs.am36
1 files changed, 0 insertions, 36 deletions
diff --git a/automake/subdirs.am b/automake/subdirs.am
deleted file mode 100644
index 3d54285dec..0000000000
--- a/automake/subdirs.am
+++ /dev/null
@@ -1,36 +0,0 @@
-## $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
-
-depend-recursive \
-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
-
-depend: depend-recursive
-.PHONY: depend-recursive