Fix yacc and lex reruns with maintainer-mode off.
gas/: * Makefile.am (am__skiplex, am__skipyacc): New. * Makefile.in: Regenerate. ld/: * Makefile.am (am__skiplex, am__skipyacc): New. * Makefile.in: Regenerate. binutils/: * Makefile.am (am__skiplex, am__skipyacc): New. * Makefile.in: Regenerate. gold/: * Makefile.am (am__skiplex, am__skipyacc): New. * Makefile.in: Regenerate.
This commit is contained in:
parent
a0367d1c21
commit
a15af8e2a7
12 changed files with 60 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* Makefile.am (am__skiplex, am__skipyacc): New.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
2009-08-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* Makefile.am (syslex.o): Depend on sysinfo.h config.h.
|
||||
|
|
|
@ -17,6 +17,11 @@ YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bis
|
|||
YFLAGS = -d
|
||||
LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
|
||||
|
||||
# Automake 1.10+ disables lex and yacc output file regeneration if
|
||||
# maintainer mode is disabled. Avoid this.
|
||||
am__skiplex =
|
||||
am__skipyacc =
|
||||
|
||||
WARN_CFLAGS = @WARN_CFLAGS@
|
||||
NO_WERROR = @NO_WERROR@
|
||||
AM_CFLAGS = $(WARN_CFLAGS)
|
||||
|
|
|
@ -374,6 +374,11 @@ AUTOMAKE_OPTIONS = dejagnu no-dist foreign
|
|||
ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
|
||||
SUBDIRS = doc po
|
||||
tooldir = $(exec_prefix)/$(target_alias)
|
||||
|
||||
# Automake 1.10+ disables lex and yacc output file regeneration if
|
||||
# maintainer mode is disabled. Avoid this.
|
||||
am__skiplex =
|
||||
am__skipyacc =
|
||||
AM_CFLAGS = $(WARN_CFLAGS)
|
||||
|
||||
# these two are almost the same program
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* Makefile.am (am__skiplex, am__skipyacc): New.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* Makefile.am (YFLAGS): Remove, not needed any more.
|
||||
|
|
|
@ -10,6 +10,11 @@ tooldir = $(exec_prefix)/$(target_alias)
|
|||
YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi`
|
||||
LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi`
|
||||
|
||||
# Automake 1.10+ disables lex and yacc output file regeneration if
|
||||
# maintainer mode is disabled. Avoid this.
|
||||
am__skiplex =
|
||||
am__skipyacc =
|
||||
|
||||
WARN_CFLAGS = @WARN_CFLAGS@
|
||||
NO_WERROR = @NO_WERROR@
|
||||
AM_CFLAGS = $(WARN_CFLAGS)
|
||||
|
|
|
@ -280,6 +280,11 @@ AUTOMAKE_OPTIONS = 1.11 dejagnu foreign no-dist
|
|||
ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
|
||||
SUBDIRS = doc po
|
||||
tooldir = $(exec_prefix)/$(target_alias)
|
||||
|
||||
# Automake 1.10+ disables lex and yacc output file regeneration if
|
||||
# maintainer mode is disabled. Avoid this.
|
||||
am__skiplex =
|
||||
am__skipyacc =
|
||||
AM_CFLAGS = $(WARN_CFLAGS)
|
||||
TARG_CPU = @target_cpu_type@
|
||||
TARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* Makefile.am (am__skiplex, am__skipyacc): New.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* Makefile.am (AM_CPPFLAGS): Renamed from ...
|
||||
|
|
|
@ -29,6 +29,11 @@ endif
|
|||
|
||||
AM_YFLAGS = -d
|
||||
|
||||
# Automake 1.10+ disables lex and yacc output file regeneration if
|
||||
# maintainer mode is disabled. Avoid this.
|
||||
am__skiplex =
|
||||
am__skipyacc =
|
||||
|
||||
noinst_PROGRAMS = ld-new
|
||||
noinst_LIBRARIES = libgold.a
|
||||
|
||||
|
|
|
@ -342,6 +342,11 @@ LIBIBERTY = ../libiberty/libiberty.a
|
|||
@PLUGINS_TRUE@LIBDL = -ldl
|
||||
@THREADS_TRUE@THREADSLIB = -lpthread
|
||||
AM_YFLAGS = -d
|
||||
|
||||
# Automake 1.10+ disables lex and yacc output file regeneration if
|
||||
# maintainer mode is disabled. Avoid this.
|
||||
am__skiplex =
|
||||
am__skipyacc =
|
||||
noinst_LIBRARIES = libgold.a
|
||||
CCFILES = \
|
||||
archive.cc \
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* Makefile.am (am__skiplex, am__skipyacc): New.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* Makefile.am (bin_PROGRAMS): Renamed from ...
|
||||
|
|
|
@ -12,6 +12,11 @@ YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bis
|
|||
YFLAGS = -d
|
||||
LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
|
||||
|
||||
# Automake 1.10+ disables lex and yacc output file regeneration if
|
||||
# maintainer mode is disabled. Avoid this.
|
||||
am__skiplex =
|
||||
am__skipyacc =
|
||||
|
||||
WARN_CFLAGS = @WARN_CFLAGS@
|
||||
NO_WERROR = @NO_WERROR@
|
||||
AM_CFLAGS = $(WARN_CFLAGS)
|
||||
|
|
|
@ -323,6 +323,11 @@ ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
|
|||
TEXINFO_TEX = $(top_srcdir)/../texinfo/texinfo.tex
|
||||
SUBDIRS = po
|
||||
tooldir = $(exec_prefix)/$(target_alias)
|
||||
|
||||
# Automake 1.10+ disables lex and yacc output file regeneration if
|
||||
# maintainer mode is disabled. Avoid this.
|
||||
am__skiplex =
|
||||
am__skipyacc =
|
||||
AM_CFLAGS = $(WARN_CFLAGS)
|
||||
|
||||
# We put the scripts in the directory $(scriptdir)/ldscripts.
|
||||
|
|
Loading…
Reference in a new issue