Commit f1908d70 by Richard Kenner

Change "realclean" to "maintainer-clean".

From-SVN: r9450
parent 209d691e
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
# The targets for external use include: # The targets for external use include:
# all, doc, proto, install, install-cross, install-cross-rest, # all, doc, proto, install, install-cross, install-cross-rest,
# uninstall, TAGS, mostlyclean, clean, distclean, realclean, # uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
# stage1, stage2, stage3, stage4. # stage1, stage2, stage3, stage4.
# Suppress smart makes who think they know how to automake Yacc files # Suppress smart makes who think they know how to automake Yacc files
...@@ -566,7 +566,7 @@ BYTECODE_H = bytecode.h bc-emit.h bc-optab.h ...@@ -566,7 +566,7 @@ BYTECODE_H = bytecode.h bc-emit.h bc-optab.h
# info, dvi, # info, dvi,
# install-normal, install-common, install-info, install-man, # install-normal, install-common, install-info, install-man,
# uninstall, distdir, # uninstall, distdir,
# mostlyclean, clean, distclean, extraclean, realclean, # mostlyclean, clean, distclean, extraclean, maintainer-clean,
# stage1, stage2, stage3, stage4 # stage1, stage2, stage3, stage4
# #
# Each language is linked in with a series of hooks (since we can't use `::' # Each language is linked in with a series of hooks (since we can't use `::'
...@@ -1541,7 +1541,7 @@ bytecode.mostlyclean: ...@@ -1541,7 +1541,7 @@ bytecode.mostlyclean:
bytecode.distclean bytecode.clean: bytecode.mostlyclean bytecode.distclean bytecode.clean: bytecode.mostlyclean
-rm -f bi-arity bi-opcode bi-opname bi-lexer -rm -f bi-arity bi-opcode bi-opname bi-lexer
bytecode.realclean: bytecode.clean bytecode.maintainer-clean: bytecode.clean
-rm -f bi-parser.c bi-parser.h -rm -f bi-parser.c bi-parser.h
...@@ -1822,14 +1822,14 @@ $(srcdir)/INSTALL: install1.texi install.texi ...@@ -1822,14 +1822,14 @@ $(srcdir)/INSTALL: install1.texi install.texi
# Deletion of files made during compilation. # Deletion of files made during compilation.
# There are four levels of this: # There are four levels of this:
# `mostlyclean', `clean', `distclean' and `realclean'. # `mostlyclean', `clean', `distclean' and `maintainer-clean'.
# `mostlyclean' is useful while working on a particular type of machine. # `mostlyclean' is useful while working on a particular type of machine.
# It deletes most, but not all, of the files made by compilation. # It deletes most, but not all, of the files made by compilation.
# It does not delete libgcc.a or its parts, so it won't have to be recompiled. # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
# `clean' deletes everything made by running `make all'. # `clean' deletes everything made by running `make all'.
# `distclean' also deletes the files made by config. # `distclean' also deletes the files made by config.
# `realclean' also deletes everything that could be regenerated automatically. # `maintainer-clean' also deletes everything that could be regenerated
# We remove as much from the language subdirectories as we can # automatically. We remove as much from the language subdirectories as we can
# (less duplicated code). # (less duplicated code).
...@@ -1934,7 +1934,7 @@ extraclean: distclean lang.extraclean ...@@ -1934,7 +1934,7 @@ extraclean: distclean lang.extraclean
# Get rid of every file that's generated from some other file. # Get rid of every file that's generated from some other file.
# Most of these files ARE PRESENT in the GCC distribution. # Most of these files ARE PRESENT in the GCC distribution.
realclean: distclean bytecode.realclean lang.realclean maintainer-clean: distclean bytecode.maintainer-clean lang.maintainer-clean
-rm -f c-parse.y c-gperf.h objc-parse.y -rm -f c-parse.y c-gperf.h objc-parse.y
-rm -f objc-parse.c objc-parse.output -rm -f objc-parse.c objc-parse.output
-rm -f c-parse.c c-parse.h c-parse.output -rm -f c-parse.c c-parse.h c-parse.output
...@@ -2514,7 +2514,7 @@ risky-stage4: force ...@@ -2514,7 +2514,7 @@ risky-stage4: force
-make clean -make clean
#In GNU Make, ignore whether `stage*' exists. #In GNU Make, ignore whether `stage*' exists.
.PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap .PHONY: stage1 stage2 stage3 stage4 clean maintainer-clean TAGS bootstrap
.PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
force: force:
...@@ -24,8 +24,8 @@ ...@@ -24,8 +24,8 @@
# foo.info, foo.dvi, # foo.info, foo.dvi,
# foo.install-normal, foo.install-common, foo.install-info, foo.install-man, # foo.install-normal, foo.install-common, foo.install-info, foo.install-man,
# foo.uninstall, foo.distdir, # foo.uninstall, foo.distdir,
# foo.mostlyclean, foo.clean, foo.distclean, foo.extraclean, foo.realclean, # foo.mostlyclean, foo.clean, foo.distclean, foo.extraclean,
# foo.stage1, foo.stage2, foo.stage3, foo.stage4 # foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
# #
# where `foo' is the name of the language. # where `foo' is the name of the language.
# #
...@@ -154,7 +154,7 @@ c++.distclean: ...@@ -154,7 +154,7 @@ c++.distclean:
-rm -f cp/config.status cp/Makefile -rm -f cp/config.status cp/Makefile
-rm -f cp/parse.output -rm -f cp/parse.output
c++.extraclean: c++.extraclean:
c++.realclean: c++.maintainer-clean:
-rm -f cp/parse.c cp/parse.h -rm -f cp/parse.c cp/parse.h
# Stage hooks: # Stage hooks:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment