aboutsummaryrefslogtreecommitdiff
path: root/binutils/Makefile.in
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1992-12-16 02:13:17 +0000
committerPer Bothner <per@bothner.com>1992-12-16 02:13:17 +0000
commite2fe2df4d341bdae2a75dab9bc014898aac956fa (patch)
tree10ba70b987866092d310defec629889ff9440acf /binutils/Makefile.in
parent041164e469c35c91b406d48db6117ac7ab1c55a0 (diff)
downloadgdb-e2fe2df4d341bdae2a75dab9bc014898aac956fa.zip
gdb-e2fe2df4d341bdae2a75dab9bc014898aac956fa.tar.gz
gdb-e2fe2df4d341bdae2a75dab9bc014898aac956fa.tar.bz2
* Makefile.in (dist): Fix permissions before release.
* size.c: Use bfd_size_type (and long) where appropriate. * ar.c: Make writing a map the default, to be compatible with SYSV and Posix.2. Remove some bogus kludges that handled __.SYMDEF directly. * NEWS: New file.
Diffstat (limited to 'binutils/Makefile.in')
-rw-r--r--binutils/Makefile.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in
index 2b0eb0a..dbe045f 100644
--- a/binutils/Makefile.in
+++ b/binutils/Makefile.in
@@ -61,7 +61,7 @@ SYMLINK = ln -s
BISON = `if [ -f ../byacc/byacc ] ; then echo ../byacc/byacc ; else echo byacc ; fi`
# Comment these out if using lex.
LEX_OPTIONS = -I -Cem
-LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex -S../flex/flex.skel ; else echo flex ; fi`
+LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
# Distribution version
VERSION=2.0
@@ -351,11 +351,18 @@ install-info: info
clean-info:
-rm -rf *.info*
+# Making a dist:
+# cvs rtag binutils-x-yy binutils
+# cvs co -r binutils-x-yy binutils
+# Sanitize
+# cd {HERE}; make dist [-f Makefile.in]
+
dist: $(DIST_NAME).tar.Z
diststuff: $(DISTSTUFF)
$(DIST_NAME).tar.Z:
+ cd ..; chmod og=u `find . -print`
cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
make diststuff -f Makefile.in
cd ../ld; make diststuff -f Makefile.in