* Makefile.am (HFILES): Add itbl-lex.h.
(itbl-lex.o, itbl-parse.o): Depend on itbl-lex.h * Makefile.in: Regenerate. * configure: Regenerate. * po/POTFILES.in: Regenerate.
This commit is contained in:
parent
72f4774460
commit
b16b813f9d
4 changed files with 14 additions and 9 deletions
|
@ -221,6 +221,7 @@ HFILES = \
|
|||
frags.h \
|
||||
hash.h \
|
||||
input-file.h \
|
||||
itbl-lex.h \
|
||||
itbl-ops.h \
|
||||
listing.h \
|
||||
macro.h \
|
||||
|
@ -653,9 +654,9 @@ $(srcdir)/config/m68k-parse.h: ; @true
|
|||
# The instruction table specification lexical analyzer and parser.
|
||||
|
||||
itbl-lex.c: $(srcdir)/itbl-lex.l
|
||||
itbl-lex.o: itbl-lex.c itbl-parse.h
|
||||
itbl-lex.o: itbl-lex.c itbl-parse.h $(srcdir)/itbl-lex.h
|
||||
|
||||
itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h
|
||||
itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h $(srcdir)/itbl-lex.h
|
||||
|
||||
itbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
|
||||
|
||||
|
|
|
@ -448,6 +448,7 @@ HFILES = \
|
|||
frags.h \
|
||||
hash.h \
|
||||
input-file.h \
|
||||
itbl-lex.h \
|
||||
itbl-ops.h \
|
||||
listing.h \
|
||||
macro.h \
|
||||
|
@ -3063,9 +3064,9 @@ $(srcdir)/config/m68k-parse.h: ; @true
|
|||
# The instruction table specification lexical analyzer and parser.
|
||||
|
||||
itbl-lex.c: $(srcdir)/itbl-lex.l
|
||||
itbl-lex.o: itbl-lex.c itbl-parse.h
|
||||
itbl-lex.o: itbl-lex.c itbl-parse.h $(srcdir)/itbl-lex.h
|
||||
|
||||
itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h
|
||||
itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h $(srcdir)/itbl-lex.h
|
||||
|
||||
itbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
|
||||
|
||||
|
|
12
gas/configure
vendored
12
gas/configure
vendored
|
@ -8035,11 +8035,6 @@ echo "${ECHO_T}$USE_NLS" >&6
|
|||
USE_INCLUDED_LIBINTL=no
|
||||
|
||||
if test "$USE_NLS" = "yes"; then
|
||||
|
||||
cat >>confdefs.h <<\_ACEOF
|
||||
#define ENABLE_NLS 1
|
||||
_ACEOF
|
||||
|
||||
echo "$as_me:$LINENO: checking whether included gettext is requested" >&5
|
||||
echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6
|
||||
|
||||
|
@ -8829,6 +8824,13 @@ echo "${ECHO_T}found xgettext programs is not GNU xgettext; ignore it" >&6
|
|||
|
||||
|
||||
|
||||
if test "x$CATOBJEXT" != "x"; then
|
||||
|
||||
cat >>confdefs.h <<\_ACEOF
|
||||
#define ENABLE_NLS 1
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
|
||||
if test "x$CATOBJEXT" != "x"; then
|
||||
|
|
|
@ -178,6 +178,7 @@ input-file.c
|
|||
input-file.h
|
||||
input-scrub.c
|
||||
input-scrub.c
|
||||
itbl-lex.h
|
||||
itbl-ops.c
|
||||
itbl-ops.h
|
||||
listing.c
|
||||
|
|
Loading…
Reference in a new issue