summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-02-07 23:55:01 +0000
committerRichard M. Stallman <rms@gnu.org>1995-02-07 23:55:01 +0000
commit1abdab8baf89bab10b036a92f38ab736ef38b63f (patch)
tree77f8989239e6ccf36aff537738bc7d2f9620e7af /Makefile.in
parentad6959e960aca13d11c305199645e5cfa11b39ab (diff)
downloademacs-1abdab8baf89bab10b036a92f38ab736ef38b63f.tar.gz
(maintainer-clean): Renamed from realclean.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in22
1 files changed, 11 insertions, 11 deletions
diff --git a/Makefile.in b/Makefile.in
index df94153415e..11428a3fc4e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -22,7 +22,7 @@
# `make distclean' should leave only the files that were in the
# distribution.
#
-# make realclean
+# make maintainer-clean
# Delete everything from the current directory that can be
# reconstructed with this Makefile. This typically includes
# everything deleted by distclean, plus more: C source files
@@ -400,7 +400,7 @@ FRC:
# ==================== Cleaning up and miscellanea ====================
-.PHONY: mostlyclean clean distclean realclean extraclean
+.PHONY: mostlyclean clean distclean maintainer-clean extraclean
### `mostlyclean'
### Like `clean', but may refrain from deleting a few files that people
@@ -448,23 +448,23 @@ distclean: FRC
${top_distclean}
-### `realclean'
+### `maintainer-clean'
### Delete everything from the current directory that can be
### reconstructed with this Makefile. This typically includes
### everything deleted by distclean, plus more: C source files
### produced by Bison, tags tables, info files, and so on.
###
-### One exception, however: `make realclean' should not delete
+### One exception, however: `make maintainer-clean' should not delete
### `configure' even if `configure' can be remade using a rule in the
-### Makefile. More generally, `make realclean' should not delete
+### Makefile. More generally, `make maintainer-clean' should not delete
### anything that needs to exist in order to run `configure' and then
### begin to build the program.
-realclean: FRC
- (cd src; $(MAKE) $(MFLAGS) realclean)
- (cd oldXMenu; $(MAKE) $(MFLAGS) realclean)
- (cd lwlib; $(MAKE) $(MFLAGS) realclean)
- (cd lib-src; $(MAKE) $(MFLAGS) realclean)
- -(cd man && $(MAKE) $(MFLAGS) realclean)
+maintainer-clean: FRC
+ (cd src; $(MAKE) $(MFLAGS) maintainer-clean)
+ (cd oldXMenu; $(MAKE) $(MFLAGS) maintainer-clean)
+ (cd lwlib; $(MAKE) $(MFLAGS) maintainer-clean)
+ (cd lib-src; $(MAKE) $(MFLAGS) maintainer-clean)
+ -(cd man && $(MAKE) $(MFLAGS) maintainer-clean)
${top_distclean}
### This doesn't actually appear in the coding standards, but Karl