]> sourceware.org Git - automake.git/commitdiff
Initial revision
authorDavid J. MacKenzie <djm@gnu.org>
Mon, 19 Sep 1994 14:38:21 +0000 (14:38 +0000)
committerDavid J. MacKenzie <djm@gnu.org>
Mon, 19 Sep 1994 14:38:21 +0000 (14:38 +0000)
lib/am/subdirs.am [new file with mode: 0644]
subdirs.am [new file with mode: 0644]

diff --git a/lib/am/subdirs.am b/lib/am/subdirs.am
new file mode 100644 (file)
index 0000000..4c361d4
--- /dev/null
@@ -0,0 +1,39 @@
+# This directory's subdirectories are mostly independent; you can cd
+# into them and run `make' without going through this Makefile.
+# To change the values of `make' variables: instead of editing Makefiles,
+# (1) if the variable is set in `config.status', edit `config.status'
+#     (which will cause the Makefiles to be regenerated when you run `make');
+# (2) otherwise, pass the desired values on the `make' command line.
+
+@SET_MAKE@
+
+all install install-info uninstall check tags TAGS info dvi:
+       for subdir in $(SUBDIRS); do \
+         echo making $@ in $$dir ; \
+         (cd $$subdir; $(MAKE) $@); \
+       done
+
+mostlyclean: mostlyclean-recursive mostlyclean-local
+
+clean: clean-recursive clean-local
+
+distclean: distclean-recursive
+       $(MAKE) distclean-local
+              
+realclean: realclean-recursive
+       $(MAKE) realclean-local
+
+mostlyclean-recursive clean-recursive distclean-recursive realclean-recursive:
+       for subdir in $(SUBDIRS); do \
+         (cd $$subdir; $(MAKE) `echo $@ | sed s/-recursive//`); \
+       done
+
+mostlyclean-local:
+       rm -f *~
+
+clean-local: mostlyclean-local
+
+distclean-local: clean-local
+       rm -f Makefile config.cache config.h config.log config.status stamp-h
+
+realclean-local: distclean-local
diff --git a/subdirs.am b/subdirs.am
new file mode 100644 (file)
index 0000000..4c361d4
--- /dev/null
@@ -0,0 +1,39 @@
+# This directory's subdirectories are mostly independent; you can cd
+# into them and run `make' without going through this Makefile.
+# To change the values of `make' variables: instead of editing Makefiles,
+# (1) if the variable is set in `config.status', edit `config.status'
+#     (which will cause the Makefiles to be regenerated when you run `make');
+# (2) otherwise, pass the desired values on the `make' command line.
+
+@SET_MAKE@
+
+all install install-info uninstall check tags TAGS info dvi:
+       for subdir in $(SUBDIRS); do \
+         echo making $@ in $$dir ; \
+         (cd $$subdir; $(MAKE) $@); \
+       done
+
+mostlyclean: mostlyclean-recursive mostlyclean-local
+
+clean: clean-recursive clean-local
+
+distclean: distclean-recursive
+       $(MAKE) distclean-local
+              
+realclean: realclean-recursive
+       $(MAKE) realclean-local
+
+mostlyclean-recursive clean-recursive distclean-recursive realclean-recursive:
+       for subdir in $(SUBDIRS); do \
+         (cd $$subdir; $(MAKE) `echo $@ | sed s/-recursive//`); \
+       done
+
+mostlyclean-local:
+       rm -f *~
+
+clean-local: mostlyclean-local
+
+distclean-local: clean-local
+       rm -f Makefile config.cache config.h config.log config.status stamp-h
+
+realclean-local: distclean-local
This page took 0.028813 seconds and 5 git commands to generate.