diff options
Diffstat (limited to 'sim/Makefile.in')
-rw-r--r-- | sim/Makefile.in | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 7c9308ec826..c70355c1f2e 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -61,10 +61,6 @@ RANLIB = @RANLIB@ SUBDIRS = @subdirs@ -.NOEXPORT: -MAKEOVERRIDES= - - INCDIR = $(srcdir)/../include CSEARCH = -I. -I$(srcdir) -I$(INCDIR) DEP = mkdep @@ -133,6 +129,16 @@ all: else true; fi; \ done +clean mostlyclean: + @rootme=`pwd` ; export rootme ; \ + for dir in . ${SUBDIRS}; do \ + if [ "$$dir" = "." ]; then \ + true; \ + elif [ -d $$dir ]; then \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \ + else true; fi; \ + done + distclean maintainer-clean realclean: @rootme=`pwd` ; export rootme ; \ for dir in . ${SUBDIRS}; do \ @@ -178,6 +184,9 @@ dvi: ### ### +.NOEXPORT: +MAKEOVERRIDES= + .PHONY: check installcheck check: installcheck: |