diff options
author | Jie Zhang <jie.zhang@analog.com> | 2009-09-04 02:13:36 +0000 |
---|---|---|
committer | Jie Zhang <jie.zhang@analog.com> | 2009-09-04 02:13:36 +0000 |
commit | 53ae48a2108b85d3c9d312a143efb482bb57debe (patch) | |
tree | 2b613ec8ef5965c272b3a165a1dec401187428f0 /gas/Makefile.am | |
parent | 10e636d21ea3e704dca34a6393fdefd1e90f07c8 (diff) | |
download | gdb-53ae48a2108b85d3c9d312a143efb482bb57debe.zip gdb-53ae48a2108b85d3c9d312a143efb482bb57debe.tar.gz gdb-53ae48a2108b85d3c9d312a143efb482bb57debe.tar.bz2 |
* Makefile.am (bfin-parse.o): Remove bfin-parse.h from
the prerequisite. Add $(srcdir)/config/bfin-aux.h to the
prerequisite.
(bfin-defs.h, $(srcdir)/config/bfin-defs.h): Rename to ...
(bfin-parse.h, $(srcdir)/config/bfin-parse.h): ... these.
(bfin-lex.o): Add bfin-parse.h and $(srcdir)/config/bfin-defs.h
to the prerequisite.
* Makefile.in: Regenerate.
Diffstat (limited to 'gas/Makefile.am')
-rw-r--r-- | gas/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gas/Makefile.am b/gas/Makefile.am index 1f78c71..b7852768 100644 --- a/gas/Makefile.am +++ b/gas/Makefile.am @@ -603,15 +603,16 @@ $(srcdir)/config/m68k-parse.h: ; @true bfin-parse.c: $(srcdir)/config/bfin-parse.y $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-parse.y y.tab.c bfin-parse.c y.tab.h bfin-parse.h -- $(YACCCOMPILE) -d ; bfin-parse.h: bfin-parse.c -bfin-parse.o: bfin-parse.c bfin-parse.h $(srcdir)/config/bfin-defs.h \ +bfin-parse.o: bfin-parse.c \ + $(srcdir)/config/bfin-aux.h $(srcdir)/config/bfin-defs.h \ $(INCDIR)/elf/common.h $(INCDIR)/elf/bfin.h $(BFDDIR)/libbfd.h -bfin-defs.h: ; @true -$(srcdir)/config/bfin-defs.h: ; @true +bfin-parse.h: ; @true +$(srcdir)/config/bfin-parse.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-lex.o: bfin-lex.c bfin-parse.h $(srcdir)/config/bfin-defs.h if am__fastdepCC $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f bfin-lex.c || echo $(srcdir)/`bfin-lex.c $(NO_WERROR) mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po |