diff options
author | Per Bothner <per@bothner.com> | 1993-03-19 00:11:02 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1993-03-19 00:11:02 +0000 |
commit | c840244e232b52120ceff2ba44f291897b82a706 (patch) | |
tree | 6e62be6b9064c0393f08d26805e5110f3b065dcf /opcodes/Makefile.in | |
parent | d7e1be4659dd730664b8948e99a3e8dff707b660 (diff) | |
download | gdb-c840244e232b52120ceff2ba44f291897b82a706.zip gdb-c840244e232b52120ceff2ba44f291897b82a706.tar.gz gdb-c840244e232b52120ceff2ba44f291897b82a706.tar.bz2 |
* mips-dis.c, z8k-dis.c: Converted to use interface defined in
../include/dis-asm.h.
* m68k-dis.c: New file (merge of ../binutils/m68k-pinsn.c
and ../gdb/m68k-pinsn.c).
* i386-dis.c: New file (merge of ../binutils/i386-pinsn.c
and ../gdb/i386-pinsn.c).
* m68881-ext.c: New file. Moved definition of
ext_format ext_format_68881 from ../gdb/m68k-tdep.c.
* Makefile.in: Adjust for new files.
* i386-dis.c: Patches from John Hassey (hassey@dg-rtp.dg.com).
* m68k-dis.c: Recognize '9' placement code, so (say) pflush
can be dis-assembled.
Diffstat (limited to 'opcodes/Makefile.in')
-rw-r--r-- | opcodes/Makefile.in | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/opcodes/Makefile.in b/opcodes/Makefile.in index 8e4eb75..1dfe004 100644 --- a/opcodes/Makefile.in +++ b/opcodes/Makefile.in @@ -53,17 +53,18 @@ BISON = bison MAKEINFO = makeinfo RANLIB = ranlib -INCDIR = $(srcdir)/../include $(srcdir)/../bfd -CSEARCH = -I. -I$(srcdir) -I$(INCDIR) +INCDIR = $(srcdir)/../include +BFDDIR = $(srcdir)/../bfd +CSEARCH = -I. -I$(srcdir) -I$(INCDIR) -I$(BFDDIR) DEP = mkdep TARGETLIB = libopcodes.a -DIS_LIBS = z8k-dis.o +DIS_LIBS = i386-dis.o z8k-dis.o m68k-dis.o mips-dis.o -OFILES = $(DIS_LIBS) sparc-opc.o +OFILES = $(DIS_LIBS) sparc-opc.o m68881-ext.o #### host and target dependent Makefile fragments come in here. ### @@ -85,7 +86,7 @@ FLAGS_TO_PASS = \ # C source files that correspond to .o's. -CFILES = z8k-dis.c +CFILES = i386-dis.c z8k-dis.c m68k-dis.c mips-dis.c STAGESTUFF = $(TARGETLIB) $(OFILES) @@ -110,17 +111,21 @@ $(TARGETLIB): $(OFILES) # Circumvent Sun Make bug with VPATH. sparc-opc.o: sparc-opc.c +m68881-ext.o: m68881-ext.c tags etags: TAGS TAGS: force etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c +MOSTLYCLEAN = *.o core *.E *.p *.ip +mostyclean: + rm -rf $(MOSTLYCLEAN) clean: - rm -f *.[oa] *~ core *.E *.p *.ip aout-params.h gen-aout - -clobber realclean: clean - rm -f libbfd.a TAGS + rm -f *.a $(MOSTLYCLEAN) +distclean: clean + rm -rf Makefile config.status sysdep.h TAGS +clobber realclean: distclean # Mark everything as depending on config.status, since the timestamp on # sysdep.h might actually move backwards if we reconfig and relink it |