diff options
author | K. Richard Pixley <rich@cygnus> | 1991-08-16 21:47:14 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-08-16 21:47:14 +0000 |
commit | f9584c6dcdc8ff01c880264b20bdd5eb5a5ad4a3 (patch) | |
tree | 64c028c9c984b01f94fe2eec18e93103300b8a0c /gdb/Makefile.in | |
parent | 88f13fd058c7c468df9d1469c319c697b3e24a64 (diff) | |
download | gdb-f9584c6dcdc8ff01c880264b20bdd5eb5a5ad4a3.zip gdb-f9584c6dcdc8ff01c880264b20bdd5eb5a5ad4a3.tar.gz gdb-f9584c6dcdc8ff01c880264b20bdd5eb5a5ad4a3.tar.bz2 |
Allow yacc to be passed in as BISON.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 54b060f..be4b9d48 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -48,8 +48,8 @@ srcdir = . # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which # is where it should be according to Posix). -BISON=bison -BISONFLAGS=-y +BISON=bison -y +BISONFLAGS= YACC=$(BISON) $(BISONFLAGS) # YACC=yacc SHELL=/bin/sh @@ -283,7 +283,7 @@ init.c: $(srcdir)/munch $(MUNCH_DEFINE) $(OBS) $(TSOBS) gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} init.o ${CC-LD} $(LDFLAGS) -o gdb init.o $(OBS) $(TSOBS) $(ADD_FILES) \ - $(CLIBS) + $(CLIBS) $(LOADLIBES) saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS @@ -526,7 +526,7 @@ Makefile: $(srcdir)/Makefile.in $(srcdir)/configure (cd $(srcdir) ; \ ./configure +destdir=$(destdir) \ +norecurse \ - `if [ "$(srcdir)" != "." ] ; then echo +f; fi` \ + `if [ "$(srcdir)" != "." ] ; then echo +subdirs; fi` \ $(host) +target=$(target)) force: |