more ideas
[automake.git] / subdirs.am
blob5aaabc71baa561c3f9c950c5d2e2374dcd54683f
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.
8 @SET_MAKE@
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).
13 all::
14         for subdir in $(SUBDIRS); do \
15           echo making $@ in $$subdir ; \
16           (cd $$subdir; $(MAKE) $@); \
17         done
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) $@); \
23         done
25 mostlyclean: mostlyclean-recursive mostlyclean-local
27 clean: clean-recursive clean-local
29 distclean: distclean-recursive
30         $(MAKE) distclean-local
31                
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//`); \
40         done
42 mostlyclean-local:
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
51         rm -f TAGS
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.
56 .NOEXPORT: