* Makefile.in (gencode): Link with libopcodes in build tree rather
than building source files from there.
This commit is contained in:
parent
88694af3f9
commit
42acc51e30
2 changed files with 7 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-01-31 Jonathan Larmour <jlarmour@redhat.com>
|
||||
|
||||
* Makefile.in (gencode): Link with libopcodes in build tree rather
|
||||
than building source files from there.
|
||||
|
||||
2000-05-30 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* v850.igen: Remove illegal instruction pattern, since it is the
|
||||
|
|
|
@ -56,10 +56,8 @@ tmp-gencode: gencode
|
|||
touch tmp-gencode
|
||||
gencode.o: gencode.c
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
|
||||
v850-opc.o: $(srcdir)/../../opcodes/v850-opc.c
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $<
|
||||
gencode: gencode.o v850-opc.o
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o v850-opc.o
|
||||
gencode: gencode.o ../../opcodes/libopcodes.a
|
||||
$(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o ../../opcodes/libopcodes.a
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue