aboutsummaryrefslogtreecommitdiff
path: root/gas/Makefile.am
diff options
context:
space:
mode:
authorJie Zhang <jie.zhang@analog.com>2005-10-24 16:31:22 +0000
committerJie Zhang <jie.zhang@analog.com>2005-10-24 16:31:22 +0000
commit9ba4c445137e7c387090441e2837e09479f14457 (patch)
treec7ac22c3e48116f1357a8d55004de349893373b0 /gas/Makefile.am
parentf470759536919310535044dde07b70f850fe675c (diff)
downloadfsf-binutils-gdb-9ba4c445137e7c387090441e2837e09479f14457.zip
fsf-binutils-gdb-9ba4c445137e7c387090441e2837e09479f14457.tar.gz
fsf-binutils-gdb-9ba4c445137e7c387090441e2837e09479f14457.tar.bz2
bfd/
* elf32-bfin.c (bfd_bfin_elf32_create_embedded_relocs): Fix signedness warning. gas/ * Makefile.am (bfin-parse.h): Renamed from bfin-parse.tab.h. (EXTRA_DIST): Add bfin-parse.h and bfin-lex.c. * Makefile.in: Regenerate. * config/bfin-lex.l: Include bfin-parse.h instead of bfin-parse.tab.h. * config/tc-bfin.c (md_chars_to_number): Change the type of first argument from unsigned char * to char * to remove signedness warnings.
Diffstat (limited to 'gas/Makefile.am')
-rw-r--r--gas/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/Makefile.am b/gas/Makefile.am
index 4572583..48f9537 100644
--- a/gas/Makefile.am
+++ b/gas/Makefile.am
@@ -441,7 +441,7 @@ noinst_SCRIPTS = $(GDBINIT)
EXTRA_SCRIPTS = .gdbinit
EXTRA_DIST = m68k-parse.c itbl-parse.c itbl-parse.h itbl-lex.c \
- bfin-parse.c
+ bfin-parse.c bfin-parse.h bfin-lex.c
diststuff: $(EXTRA_DIST) info
all: info
@@ -606,15 +606,15 @@ m68k-parse.h: ; @true
$(srcdir)/config/m68k-parse.h: ; @true
bfin-parse.c bfin-parse.tab.h: $(srcdir)/config/bfin-parse.y
- $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-parse.y y.tab.c bfin-parse.c y.tab.h bfin-parse.tab.h -- $(YACCCOMPILE) -d ;
-bfin-parse.o: bfin-parse.c bfin-parse.tab.h $(srcdir)/config/bfin-defs.h
+ $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-parse.y y.tab.c bfin-parse.c y.tab.h bfin-parse.h -- $(YACCCOMPILE) -d ;
+bfin-parse.o: bfin-parse.c bfin-parse.h $(srcdir)/config/bfin-defs.h
bfin-defs.h: ; @true
$(srcdir)/config/bfin-defs.h: ; @true
bfin-lex.c: $(srcdir)/config/bfin-lex.l
$(SHELL) $(YLWRAP) $(srcdir)/config/bfin-lex.l lex.yy.c bfin-lex.c -- $(LEXCOMPILE)
-bfin-lex.o: bfin-lex.c bfin-parse.tab.h $(srcdir)/config/bfin-defs.h
+bfin-lex.o: bfin-lex.c bfin-parse.h $(srcdir)/config/bfin-defs.h
$(COMPILE) -c $< $(NO_WERROR)
# The instruction table specification lexical analyzer and parser.