diff options
author | K. Richard Pixley <rich@cygnus> | 1991-12-10 08:05:11 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-12-10 08:05:11 +0000 |
commit | e9712beec80d9451b9a3a6f4916c302c38d7f345 (patch) | |
tree | 8e62c8eeb12e8c2186fedf27ace96bad7d99852e /Makefile.in | |
parent | 5f92dab820b725ae87317128cdef87392fdd607a (diff) | |
download | gdb-e9712beec80d9451b9a3a6f4916c302c38d7f345.zip gdb-e9712beec80d9451b9a3a6f4916c302c38d7f345.tar.gz gdb-e9712beec80d9451b9a3a6f4916c302c38d7f345.tar.bz2 |
BISON now bison -y again
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index 8ad63b7..134ef3b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -48,8 +48,8 @@ AR = ar AR_FLAGS = qv RANLIB = ranlib -BISON = `if [ -d $(unsubdir)/../byacc ] ; \ - then echo \`pwd\`/$(unsubdir)/../byacc$(subdir)/byacc ; \ +BISON = `if [ -d $(unsubdir)/../bison ] ; \ + then echo \`pwd\`/$(unsubdir)/../bison$(subdir)/bison -L \`pwd\`/$(unsubdir)/../bison$(subdir)/ -y ; \ else echo yacc ; fi` MAKEINFO = makeinfo @@ -449,7 +449,7 @@ install-bison: force ### gcc .PHONY: all-gcc just-gcc all-gcc: just-gcc -just-gcc: just-libiberty just-byacc force +just-gcc: just-libiberty just-bison force if [ -d $(unsubdir)/gcc ] ; then \ (cd $(unsubdir)/gcc$(subdir); \ $(MAKE) \ @@ -677,7 +677,7 @@ install-gas: force ### ld .PHONY: all-ld just-ld all-ld: just-ld -just-ld: just-libiberty just-bfd just-byacc force +just-ld: just-libiberty just-bfd just-bison force if [ -d $(unsubdir)/ld ] ; then \ (cd $(unsubdir)/ld$(subdir); \ $(MAKE) \ @@ -791,7 +791,7 @@ install-gnulib: force ### gdb .PHONY: all-gdb just-gdb all-gdb: just-gdb -just-gdb: just-bfd just-libiberty just-readline just-glob force +just-gdb: just-bfd just-libiberty just-readline just-glob just-bison force if [ -d $(unsubdir)/gdb ] ; then \ (cd $(unsubdir)/gdb$(subdir); \ $(MAKE) \ |