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 uninstall-data-recursive uninstall-exec-recursive install-recursive \
12 uninstall-recursive check-recursive info-recursive dvi-recursive \
13 mostlyclean-recursive clean-recursive distclean-recursive \
14 maintainer-clean-recursive
17 for subdir in $(SUBDIRS); do \
18 target=`echo $@ | sed s/-recursive//`; \
19 echo making $$target in $$subdir; \
20 (cd $$subdir; $(MAKE) $$target) \
21 || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
22 done && test -z "$$fail"
24 mostlyclean: mostlyclean-recursive mostlyclean-local
26 clean: clean-recursive clean-local
28 distclean: distclean-recursive
29 $(MAKE) distclean-local
31 maintainer-clean: maintainer-clean-recursive
32 @echo "This command is intended for maintainers to use;"
33 @echo "it deletes files that may require special tools to rebuild."
34 $(MAKE) maintainerclean-local
38 clean-local: mostlyclean-local
40 distclean-local: clean-local
41 rm -f Makefile config.cache config.log config.status
42 rm -f ${CONFIG_HEADER} stamp-h
44 maintainer-clean-local: distclean-local
48 # Tell versions [3.59,3.63) of GNU make to not export all variables.
49 # Otherwise a system limit (for SysV at least) may be exceeded.