diff options
author | Roland McGrath <roland@gnu.org> | 1999-09-18 07:53:51 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-09-18 07:53:51 +0000 |
commit | b72c7e6502814efebf8fcecb3cc546dd9e43a2a4 (patch) | |
tree | 079bdb6fe279f9e87222908d76dfb46c240c4cc9 /Makefile | |
parent | 510d86a31d884ec531b2fee3c67d5a9df202f2fd (diff) |
1999-09-18 Roland McGrath <roland@baalperazim.frob.com>
* Makefile: Revert last change; it is definitely wrong, and there is
no verified bug that needs to be fixed at all.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -99,29 +99,29 @@ TAGS: $(addsuffix -TAGS,$(prog-subdirs) $(lib-subdirs)) ## Targets used by the main targets above. $(prog-subdirs) $(lib-subdirs): FORCE - $(MAKE) -e -C $@ all + $(MAKE) -C $@ all FORCE: %-lndist: $(top_srcdir)/hurd-snap - $(MAKE) -e -C $* lndist no_deps=t + $(MAKE) -C $* lndist no_deps=t %-clean: - $(MAKE) -e -C $* clean no_deps=t + $(MAKE) -C $* clean no_deps=t %-relink: - $(MAKE) -e -C $* relink no_deps=t + $(MAKE) -C $* relink no_deps=t %-objs: - $(MAKE) -e -C $* objs + $(MAKE) -C $* objs %-install: - $(MAKE) -e -C $* install + $(MAKE) -C $* install %-install-headers: - $(MAKE) -e -C $* install-headers + $(MAKE) -C $* install-headers %-TAGS: - $(MAKE) -e -C $* TAGS no_deps=t + $(MAKE) -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) -e -C $* directory-depend no_deps=t + $(MAKE) -C $* directory-depend no_deps=t |