diff options
author | David Henkel-Wallace <gumby@cygnus> | 1994-06-08 05:05:21 +0000 |
---|---|---|
committer | David Henkel-Wallace <gumby@cygnus> | 1994-06-08 05:05:21 +0000 |
commit | b5775df3dce36c9eb7c88fd865183b8bc4b9636d (patch) | |
tree | 06dea482ca3bddc30cf246a260f3f5332740641b /binutils/Makefile.in | |
parent | 67c2d8c8d7c87ea3282512ecb500f401557f6d6e (diff) | |
download | gdb-b5775df3dce36c9eb7c88fd865183b8bc4b9636d.zip gdb-b5775df3dce36c9eb7c88fd865183b8bc4b9636d.tar.gz gdb-b5775df3dce36c9eb7c88fd865183b8bc4b9636d.tar.bz2 |
rs6k lynx changes
Diffstat (limited to 'binutils/Makefile.in')
-rw-r--r-- | binutils/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 56e844d..e7fdee3 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -111,6 +111,9 @@ STAGESTUFF = $(PROGS) *.o # Files that can be generated, but should be in the distribution. DISTSTUFF=arparse.c arlex.c nlmheader.c sysinfo.c syslex.c info +# Stuff that goes in tooldir/ if appropriate +TOOL_PROGS = nm.new strip.new ar ranlib + BASEDIR = $(srcdir)/.. BFDDIR = $(BASEDIR)/bfd INCDIR = $(BASEDIR)/include @@ -495,7 +498,7 @@ install: all $(DEMANGLER_PROG).1 done -if [ -d $(tooldir) ]; then \ if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \ - for i in nm.new strip.new ar ranlib; do \ + for i in $(TOOL_PROGS) ; do \ j=`echo $$i | sed -e 's/.new//'`; \ rm -f $(tooldir)/bin/$$j; \ k=`t='$(program_transform_name)'; echo $$j | sed -e s/x/x/ $$t`; \ |