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
eb3a6507
Commit
eb3a6507
authored
Jul 13, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(distdir-start): Make tmp/ginclude and copy its files.
(distdir-finish): Don't use -f Makefile.in. From-SVN: r7770
parent
80bdd32a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
gcc/Makefile.in
+9
-2
No files found.
gcc/Makefile.in
View file @
eb3a6507
...
...
@@ -2119,6 +2119,7 @@ distdir-start: doc $(srcdir)/INSTALL c-parse.y c-gperf.h objc-parse.y \
# which has the name that we want to have in the tar file.
mkdir
tmp
mkdir
tmp/config
mkdir
tmp/ginclude
mkdir
tmp/objc
for
file
in
*[0-9a-zA-Z+];
do
\
ln
$$file
tmp
>
/dev/null
2>&1
||
cp
$$file
tmp;
\
...
...
@@ -2138,6 +2139,10 @@ distdir-start: doc $(srcdir)/INSTALL c-parse.y c-gperf.h objc-parse.y \
||
cp
$$file
../tmp/config;
\
fi;
\
done
cd
ginclude;
\
for
file
in
*[0-9a-zA-Z+];
do
\
ln
$$file
../tmp/ginclude
>/dev/null
2>&1
||
cp
$$file
../tmp/ginclude;
\
done
cd
objc;
\
for
file
in
*[0-9a-zA-Z+];
do
\
ln
$$file
../tmp/objc
>/dev/null
2>&1
||
cp
$$file
../tmp/objc;
\
...
...
@@ -2147,8 +2152,10 @@ distdir-start: doc $(srcdir)/INSTALL c-parse.y c-gperf.h objc-parse.y \
# Finish making `distdir', after the languages have done their thing.
distdir-finish
:
mv tmp gcc-
$(version)
# Get rid of everything we don't want in the distribution.
cd
gcc-$(version);
make
-f
Makefile.in
extraclean
# Get rid of everything we don't want in the distribution. We'd want
# this to use Makefile.in, but it doesn't have the `lang.foo' targets
# expanded.
cd
gcc-$(version);
make
extraclean
distdir
:
distdir-start lang.distdir distdir-finish
...
...
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