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 # NOTE: "all" is separate because otherwise the AIX 3.2.5 make will
11 # run all of the "all", "install", "uninstall", etc targets if run
12 # with no arguments. Reported by luik@isa.DE (Andreas Luik).
14 for subdir in $(SUBDIRS); do \
15 echo making $@ in $$subdir ; \
16 (cd $$subdir; $(MAKE) $@); \
19 install install-info uninstall check info dvi id ID::
20 for subdir in $(SUBDIRS); do \
21 echo making $@ in $$subdir ; \
22 (cd $$subdir; $(MAKE) $@); \
25 mostlyclean: mostlyclean-recursive mostlyclean-local
27 clean: clean-recursive clean-local
29 distclean: distclean-recursive
30 $(MAKE) distclean-local
32 maintainer-clean: maintainer-clean-recursive
33 @echo "This command is intended for maintainers to use;"
34 @echo "it deletes files that may require special tools to rebuild."
35 $(MAKE) realclean-local
37 mostlyclean-recursive clean-recursive distclean-recursive maintainer-clean-recursive:
38 for subdir in $(SUBDIRS); do \
39 (cd $$subdir; $(MAKE) `echo $@ | sed s/-recursive//`); \
44 clean-local: mostlyclean-local
46 distclean-local: clean-local
47 rm -f Makefile config.cache config.log config.status
48 rm -f ${CONFIG_HEADER} stamp-h
50 maintainer-clean-local: distclean-local
54 # Tell versions [3.59,3.63) of GNU make to not export all variables.
55 # Otherwise a system limit (for SysV at least) may be exceeded.