Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
f1908d70
Commit
f1908d70
authored
Apr 25, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change "realclean" to "maintainer-clean".
From-SVN: r9450
parent
209d691e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
gcc/Makefile.in
+8
-8
gcc/cp/Make-lang.in
+3
-3
No files found.
gcc/Makefile.in
View file @
f1908d70
...
@@ -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,
real
clean,
# 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,
real
clean,
# 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.
real
clean
:
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 `
real
clean'.
# `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.real
clean
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
real
clean 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
:
gcc/cp/Make-lang.in
View file @
f1908d70
...
@@ -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++.
real
clean
:
c++.
maintainer-
clean
:
-
rm
-f
cp/parse.c cp/parse.h
-
rm
-f
cp/parse.c cp/parse.h
# Stage hooks:
# Stage hooks:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment