4.104.114.84.95
Last change
on this file since 11a26b9 was
11a26b9,
checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 09:13:33
|
2003-08-16 Ralf Corsepius <corsepiu@…>
- automake/compile.am, automake/force-preinstall.am,
automake/host.am, automake/lib.am, automake/local.am,
automake/subdirs.am: New (copied from ../../automake).
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
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 | |
---|
10 | depend-recursive \ |
---|
11 | preinstall-recursive: |
---|
12 | @set fnord $(MAKEFLAGS); amf=$$2; \ |
---|
13 | dot_seen=no; \ |
---|
14 | target=`echo $@ | sed s/-recursive//`; \ |
---|
15 | list='$(SUBDIRS)'; for subdir in $$list; do \ |
---|
16 | echo "Making $$target in $$subdir"; \ |
---|
17 | if test "$$subdir" = "."; then \ |
---|
18 | dot_seen=yes; \ |
---|
19 | local_target="$$target-am"; \ |
---|
20 | else \ |
---|
21 | local_target="$$target"; \ |
---|
22 | fi; \ |
---|
23 | (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ |
---|
24 | ## This trick allows "-k" to keep its natural meaning when running a |
---|
25 | ## recursive rule. |
---|
26 | || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ |
---|
27 | done; \ |
---|
28 | if test "$$dot_seen" = "no"; then \ |
---|
29 | $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ |
---|
30 | fi; test -z "$$fail" |
---|
31 | |
---|
32 | preinstall: preinstall-recursive |
---|
33 | .PHONY: preinstall-recursive |
---|
34 | |
---|
35 | depend: depend-recursive |
---|
36 | .PHONY: depend-recursive |
---|
Note: See
TracBrowser
for help on using the repository browser.