1 # This directory's subdirectories are mostly independent; you can cd
2 # into them and run `make' without going through this Makefile.
3 # To change the values of `make' variables: instead of editing Makefiles,
4 # (1) if the variable is set in `config.status', edit `config.status'
5 # (which will cause the Makefiles to be regenerated when you run `make');
6 # (2) otherwise, pass the desired values on the `make' command line.
10 RECURSIVE = all-recursive install-data-recursive install-exec-recursive \
11 installdirs-recursive install-recursive uninstall-recursive \
12 check-recursive info-recursive dvi-recursive mostlyclean-recursive \
13 clean-recursive distclean-recursive maintainer-clean-recursive
16 for subdir in $(SUBDIRS); do \
17 target=`echo $@ | sed s/-recursive//`; \
18 echo making $$target in $$subdir; \
19 (cd $$subdir; $(MAKE) $$target) \
20 || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
21 done && test -z "$$fail"