diff options
author | Per Bothner <per@bothner.com> | 1993-03-19 00:12:50 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1993-03-19 00:12:50 +0000 |
commit | 2e8adbd7f459067936857adc9fbefe9a2982e5d7 (patch) | |
tree | d7f6e9e5e097d404f336ed25a1223948a9b2301b /binutils/Makefile.in | |
parent | c840244e232b52120ceff2ba44f291897b82a706 (diff) | |
download | gdb-2e8adbd7f459067936857adc9fbefe9a2982e5d7.zip gdb-2e8adbd7f459067936857adc9fbefe9a2982e5d7.tar.gz gdb-2e8adbd7f459067936857adc9fbefe9a2982e5d7.tar.bz2 |
* m68k-pinsn.c: Removed. Subsumed by ../opcodes/m68k-dis.c.
* i386-pinsn.c: Removed. Subsumed by ../opcodes/i386-dis.c.
* Makefile.in: Adjust accordingly.
* objdump.c: Support new-style disassemblers (ones that use
the interface of ../include/dis-asm.h).
Diffstat (limited to 'binutils/Makefile.in')
-rw-r--r-- | binutils/Makefile.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 630f631..ac7e7b7 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -112,7 +112,7 @@ INCLUDES = -I. -I$(srcdir) -I$(BASEDIR)/include -I$(BASEDIR)/bfd # When adding .o files, to make VPATH work in Sun Make, you have to # also add a foo.o: foo.c line at the bottom of the file. -DISASMS = m68k-pinsn.o i960-pinsn.o i386-pinsn.o sparc-pinsn.o am29k-pinsn.o +DISASMS = i960-pinsn.o sparc-pinsn.o am29k-pinsn.o # ## Random definitions @@ -179,7 +179,7 @@ $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD) $(CC) $(LDFLAGS) $(CFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(LOADLIBES) $(OBJDUMP_PROG): $(ADDL_LIBS) size.o objdump.o $(DISASMS) $(BFD) $(OPCODES) - $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJDUMP_PROG) objdump.o $(DISASMS) $(ADDL_LIBS) $(OPCODES) $(LOADLIBES) + $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJDUMP_PROG) objdump.o $(DISASMS) $(OPCODES) $(ADDL_LIBS) $(LOADLIBES) $(DEMANGLER_PROG): $(LIBIBERTY_SRC_DIR)/cplus-dem.c $(CC) $(LDFLAGS) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DMAIN -o $(DEMANGLER_PROG) $(LIBIBERTY_SRC_DIR)/cplus-dem.c $(LIBIBERTY) $(LOADLIBES) @@ -378,12 +378,15 @@ dist: $(DIST_NAME).tar.Z diststuff: $(DISTSTUFF) $(DIST_NAME).tar.Z: - cd ..; chmod og=u `find . -print` cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME) make diststuff -f Makefile.in cd ../ld; make diststuff -f Makefile.in cd ../gprof; make diststuff -f Makefile.in cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex . + # Take out texinfo from configurable dirs + mv ../configure.in tmp; \ + sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp + cd ..; chmod og=u `find . -print` cd ../..; tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z rm -rf ../../$(DIST_NAME) @@ -401,7 +404,6 @@ gmalloc.o:gmalloc.c i960-pinsn.o: i960-pinsn.c is-ranlib.o:is-ranlib.c is-strip.o:is-strip.c -m68k-pinsn.o: m68k-pinsn.c maybe-ranlib.o:maybe-ranlib.c maybe-strip.o:maybe-strip.c nm.o: nm.c @@ -410,7 +412,6 @@ not-strip.o:not-strip.c objdump.o: objdump.c size.o: size.c sparc-pinsn.o: sparc-pinsn.c -i386-pinsn.o: i386-pinsn.c strip.o:strip.c version.o: $(srcdir)/version.c $(CC) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DVERSION='"$(VERSION)"' -c $(srcdir)/version.c |