summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-09-17 09:28:32 +0000
committerThomas Bushnell <thomas@gnu.org>1999-09-17 09:28:32 +0000
commit91b64adda28e0545b00f145000e9aff87134f068 (patch)
tree2207f3fcb07805842d0599ccf7f8916b7abdcba0 /Makefile
parent1ef97f0ec0da8413ada0638fc4077bc1e1f93e72 (diff)
1999-09-17 Thomas Bushnell, BSG <tb@mit.edu>
* Makefile ($(prog-subdirs) $(lib-subdirs), %-lndist, %-clean, %-relink, %-objs, %-install, %-install-headers, %-TAGS, %.d): Pass -e to sub-make, so that explicit prefix= args (etc.) get passed down correctly.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 91a1210b..096eb34c 100644
--- a/Makefile
+++ b/Makefile
@@ -99,29 +99,29 @@ TAGS: $(addsuffix -TAGS,$(prog-subdirs) $(lib-subdirs))
## Targets used by the main targets above.
$(prog-subdirs) $(lib-subdirs): FORCE
- $(MAKE) -C $@ all
+ $(MAKE) -e -C $@ all
FORCE:
%-lndist: $(top_srcdir)/hurd-snap
- $(MAKE) -C $* lndist no_deps=t
+ $(MAKE) -e -C $* lndist no_deps=t
%-clean:
- $(MAKE) -C $* clean no_deps=t
+ $(MAKE) -e -C $* clean no_deps=t
%-relink:
- $(MAKE) -C $* relink no_deps=t
+ $(MAKE) -e -C $* relink no_deps=t
%-objs:
- $(MAKE) -C $* objs
+ $(MAKE) -e -C $* objs
%-install:
- $(MAKE) -C $* install
+ $(MAKE) -e -C $* install
%-install-headers:
- $(MAKE) -C $* install-headers
+ $(MAKE) -e -C $* install-headers
%-TAGS:
- $(MAKE) -C $* TAGS no_deps=t
+ $(MAKE) -e -C $* TAGS no_deps=t
$(srcdir)/hurd-snap:
mkdir $(srcdir)/hurd-snap
@@ -155,4 +155,4 @@ endif
# How to build them
$(addsuffix .d,$(subdirs)): %.d: $(top_srcdir)/%/Makefile
- $(MAKE) -C $* directory-depend no_deps=t
+ $(MAKE) -e -C $* directory-depend no_deps=t