diff options
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 |