source: rtems/cpukit/automake/subdirs.am @ cf04e8ac

4.104.114.84.95
Last change on this file since cf04e8ac was 5c24afe9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/14/04 at 05:20:59

2004-01-14 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Re-add dirstamps to PREINSTALL_FILES. Add PREINSTALL_FILES to CLEANFILES.
  • automake/local.am: Remove depend-am.
  • automake/subdirs.am: Remove depend-recursive.
  • Property mode set to 100644
File size: 1022 bytes
Line 
1## $Id$
2
3## Borrowed from automake-1.4 and adapted to RTEMS
4
5## NOTE: This is a temporary work-around to keep
6## RTEMS's non automake standard make targets working.
7## Once automake is fully integrated these make targets
8## and this file will probably be removed
9
10preinstall-recursive:
11        @set fnord $(MAKEFLAGS); amf=$$2; \
12        dot_seen=no; \
13        target=`echo $@ | sed s/-recursive//`; \
14        list='$(SUBDIRS)'; for subdir in $$list; do \
15          echo "Making $$target in $$subdir"; \
16          if test "$$subdir" = "."; then \
17            dot_seen=yes; \
18            local_target="$$target-am"; \
19          else \
20            local_target="$$target"; \
21          fi; \
22          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
23## This trick allows "-k" to keep its natural meaning when running a
24## recursive rule.
25           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
26        done; \
27        if test "$$dot_seen" = "no"; then \
28          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
29        fi; test -z "$$fail"
30
31preinstall: preinstall-recursive
32.PHONY: preinstall-recursive
Note: See TracBrowser for help on using the repository browser.