diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-08-31 17:46:56 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-08-31 17:46:56 +0000 |
commit | f993f087dac2203c6a73188a7cb1493b4c77a008 (patch) | |
tree | 76283bfb6ca9311e731156a64f1a10c2bd998c13 /binutils | |
parent | 45a78ebbfb8942d9fea9702c9956be8621eac71a (diff) | |
download | gdb-f993f087dac2203c6a73188a7cb1493b4c77a008.zip gdb-f993f087dac2203c6a73188a7cb1493b4c77a008.tar.gz gdb-f993f087dac2203c6a73188a7cb1493b4c77a008.tar.bz2 |
* Makefile.in (objdump.o): Depend upon config.status to notice
--with-targets changes.
(nlmconv.o): Depend upon bucomm.h.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in index e1b3db4..8ef0fd7 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -203,12 +203,13 @@ $(NM_PROG): $(ADDL_LIBS) nm.o demangle.o $(BFD) $(OBJDUMP_PROG): $(ADDL_LIBS) objdump.o $(BFD) $(OPCODES) $(CC) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS) -objdump.o: objdump.c +objdump.o: objdump.c config.status $(CC) -c $(INCLUDES) $(HDEFINES) $(TDEFINES) $(ARCHDEFS) $(CFLAGS) $(srcdir)/objdump.c underscore.c: echo "int xxy_us_dummy;" >dummy.c $(CC) -c dummy.c + rm -f underscore.c echo '/*WARNING: This file is automatically generated!*/' >underscore.c if [ "`$(NM) dummy.o | grep _xxy_us_dummy ; true`" != "" ]; then \ echo "int prepends_underscore = 1;" >>underscore.c; \ @@ -319,7 +320,7 @@ not-strip.o: not-strip.c nlmheader.o: nlmheader.c nlmconv.h $(INCDIR)/nlm/common.h \ $(INCDIR)/nlm/internal.h nlmconv.o: nlmconv.c nlmconv.h $(INCDIR)/nlm/common.h \ - $(INCDIR)/nlm/internal.h $(BFDDIR)/libnlm.h + $(INCDIR)/nlm/internal.h $(BFDDIR)/libnlm.h bucomm.h stage1: force - mkdir stage1 |