mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-12 01:24:12 +08:00
Makefile.in bug fixes and sparc-opc.c addition
This commit is contained in:
@ -1,3 +1,21 @@
|
|||||||
|
Tue Sep 8 17:02:58 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in (install): Get the library name right here too.
|
||||||
|
Don't install bfd.h, since it's unrelated to this library. No
|
||||||
|
subdirs to recurse into, either.
|
||||||
|
(CFILES): The source file has a .c suffix, not .o.
|
||||||
|
|
||||||
|
* sparc-opc.c: New file, moved from BFD.
|
||||||
|
* Makefile.in (OFILES): Build it.
|
||||||
|
|
||||||
|
Thu Sep 3 16:59:20 1992 Michael Werner (mtw@cygnus.com)
|
||||||
|
|
||||||
|
* z8k-dis.c: fixed forward refferences of some declarations.
|
||||||
|
|
||||||
|
Mon Aug 31 16:09:45 1992 Michael Werner (mtw@cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in: get the name of the library right
|
||||||
|
|
||||||
Mon Aug 31 13:47:35 1992 Steve Chamberlain (sac@thepub.cygnus.com)
|
Mon Aug 31 13:47:35 1992 Steve Chamberlain (sac@thepub.cygnus.com)
|
||||||
|
|
||||||
* z8k-dis.c: knows how to disassemble z8k stuff
|
* z8k-dis.c: knows how to disassemble z8k stuff
|
||||||
|
@ -58,12 +58,12 @@ CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
|
|||||||
DEP = mkdep
|
DEP = mkdep
|
||||||
|
|
||||||
|
|
||||||
TARGETLIB = libopcode.a
|
TARGETLIB = libopcodes.a
|
||||||
|
|
||||||
|
|
||||||
DIS_LIBS = z8k-dis.o
|
DIS_LIBS = z8k-dis.o
|
||||||
|
|
||||||
OFILES = $(DIS_LIBS)
|
OFILES = $(DIS_LIBS) sparc-opc.o
|
||||||
#### host and target dependent Makefile fragments come in here.
|
#### host and target dependent Makefile fragments come in here.
|
||||||
###
|
###
|
||||||
|
|
||||||
@ -85,7 +85,7 @@ FLAGS_TO_PASS = \
|
|||||||
|
|
||||||
|
|
||||||
# C source files that correspond to .o's.
|
# C source files that correspond to .o's.
|
||||||
CFILES = z8k-dis.o
|
CFILES = z8k-dis.c
|
||||||
|
|
||||||
STAGESTUFF = $(TARGETLIB) $(OFILES)
|
STAGESTUFF = $(TARGETLIB) $(OFILES)
|
||||||
|
|
||||||
@ -166,14 +166,15 @@ install:
|
|||||||
-parent=`echo $(libdir)|sed -e 's@/[^/]*$$@@'`; \
|
-parent=`echo $(libdir)|sed -e 's@/[^/]*$$@@'`; \
|
||||||
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
||||||
-if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
|
-if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
|
||||||
$(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
|
$(INSTALL_DATA) $(TARGET_LIB) $(libdir)/libopcodes.a
|
||||||
$(RANLIB) $(libdir)/libbfd.a
|
$(RANLIB) $(libdir)/libopcodes.a
|
||||||
-parent=`echo $(includedir)|sed -e 's@/[^/]*$$@@'`; \
|
|
||||||
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
# -parent=`echo $(includedir)|sed -e 's@/[^/]*$$@@'`; \
|
||||||
-if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
|
# if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
||||||
$(INSTALL_DATA) $(INCDIR)/bfd.h $(includedir)/bfd.h
|
# -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
|
||||||
-if [ -z "$(oldincludedir)" ] ; then true ; else if [ -d $(oldincludedir) ] ; then true ; else mkdir $(oldincludedir) ; fi ; $(INSTALL_DATA) $(INCDIR)/bfd.h $(oldincludedir)/bfd.h ; fi
|
# $(INSTALL_DATA) $(INCDIR)/bfd.h $(includedir)/bfd.h
|
||||||
@$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
|
# -if [ -z "$(oldincludedir)" ] ; then true ; else if [ -d $(oldincludedir) ] ; then true ; else mkdir $(oldincludedir) ; fi ; $(INSTALL_DATA) $(INCDIR)/bfd.h $(oldincludedir)/bfd.h ; fi
|
||||||
|
# @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
|
||||||
|
|
||||||
# Target to uncomment host-specific lines in this makefile. Such lines must
|
# Target to uncomment host-specific lines in this makefile. Such lines must
|
||||||
# have the following string beginning in column 1: #__<hostname>__#
|
# have the following string beginning in column 1: #__<hostname>__#
|
||||||
|
1823
opcodes/sparc-opc.c
Normal file
1823
opcodes/sparc-opc.c
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user