Thu Mar 20 13:42:01 1997 H.J. Lu <hjl@lucon.org>

* Makefile.in (m68k-parse.c): Depend upon itbl-parse.c, to
	serialize a parallel make.
	(itbl-parse.h): Split target out from itbl-parse.c.
This commit is contained in:
Ian Lance Taylor 1997-03-20 18:43:10 +00:00
parent b9576d75bc
commit 29bc322d8d
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,9 @@
Thu Mar 20 13:42:01 1997 H.J. Lu <hjl@lucon.org>
* Makefile.in (m68k-parse.c): Depend upon itbl-parse.c, to
serialize a parallel make.
(itbl-parse.h): Split target out from itbl-parse.c.
Thu Mar 20 12:48:45 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* config/te-delta.h (COFF_COMMON_ADDEND): Define.

View File

@ -432,12 +432,12 @@ e-i386elf.o: $(srcdir)/config/e-i386elf.c
# The m68k operand parser.
m68k-parse.c: $(srcdir)/config/m68k-parse.y
# Depend upon itbl-parse.c to serialize a parallel make.
m68k-parse.c: $(srcdir)/config/m68k-parse.y itbl-parse.c
$(BISON) $(BISONFLAGS) $(srcdir)/config/m68k-parse.y
mv -f y.tab.c m68k-parse.c
m68k-parse.o: m68k-parse.c $(srcdir)/config/m68k-parse.h
# The instruction table specification lexical analyzer and parser.
itbl-cpu.h : $(srcdir)/config/itbl-@target_cpu_type@.h
@ -452,11 +452,13 @@ itbl-lex.c: $(srcdir)/itbl-lex.l
itbl-lex.o: itbl-lex.c itbl-parse.h
$(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) itbl-lex.c
itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y
itbl-parse.c: $(srcdir)/itbl-parse.y
$(BISON) -d $(BISONFLAGS) $(srcdir)/itbl-parse.y
mv -f y.tab.c itbl-parse.c
mv -f y.tab.h itbl-parse.h
itbl-parse.h: itbl-parse.c
itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h
$(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) itbl-parse.c