diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-06-03 23:59:39 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-06-03 23:59:39 +0000 |
commit | 105ba43fc5aa439317fee689f7048123ce4eb83b (patch) | |
tree | 52f73440fcdc6f386599e75e2fce7fb97632a24d /binutils/Makefile.am | |
parent | 144826805f0b71c706fc778e814f0a4f226784c3 (diff) | |
download | gdb-105ba43fc5aa439317fee689f7048123ce4eb83b.zip gdb-105ba43fc5aa439317fee689f7048123ce4eb83b.tar.gz gdb-105ba43fc5aa439317fee689f7048123ce4eb83b.tar.bz2 |
* Makefile.am (YACC): Correct bison -L option.
* Makefile.in: Rebuild.
Diffstat (limited to 'binutils/Makefile.am')
-rw-r--r-- | binutils/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/binutils/Makefile.am b/binutils/Makefile.am index 56c67d9..b06b6f5 100644 --- a/binutils/Makefile.am +++ b/binutils/Makefile.am @@ -15,7 +15,7 @@ tooldir = $(exec_prefix)/$(target_alias) CC_FOR_BUILD = @CC_FOR_BUILD@ EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@ -YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi` +YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L$(srcdir)/../bison/ ; else echo bison -y ; fi` YFLAGS = -d LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi` @@ -56,7 +56,8 @@ bin_PROGRAMS = $(SIZE_PROG) $(OBJDUMP_PROG) $(AR_PROG) $(STRINGS_PROG) $(RANLIB_ ## We need a special rule to install the programs which are built with -new noinst_PROGRAMS = $(NM_PROG) $(STRIP_PROG) -EXTRA_PROGRAMS = $(NLMCONV_PROG) $(SRCONV_PROG) $(DLLTOOL_PROG) $(WINDRES_PROG) +EXTRA_PROGRAMS = $(NLMCONV_PROG) srconv sysdump coffdump $(DLLTOOL_PROG) \ + $(WINDRES_PROG) # Stuff that goes in tooldir/ if appropriate TOOL_PROGS = nm-new strip-new ar ranlib dlltool |