diff options
author | Fred Fish <fnf@specifix.com> | 1991-10-24 11:11:12 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1991-10-24 11:11:12 +0000 |
commit | bb4ff694080ce03ffc2b8003cf1548ee416a7939 (patch) | |
tree | 409e817a47b2d392ef066e36c060bd93cbb4f913 /gdb/Makefile.in | |
parent | 2f068b0dd52a9c3b6c1229ea335b0e60f0a58a6a (diff) | |
download | gdb-bb4ff694080ce03ffc2b8003cf1548ee416a7939.zip gdb-bb4ff694080ce03ffc2b8003cf1548ee416a7939.tar.gz gdb-bb4ff694080ce03ffc2b8003cf1548ee416a7939.tar.bz2 |
Add dwarfread.c, dwarfread.o, elfread.c, elfread.o to source and object
file macros. Other obvious dwarf/elf tweaks.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 937dffa..eede28c 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -132,7 +132,7 @@ CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_LIB} ${LIBIBERTY} ${RL_LIB} ADD_FILES = ${REGEX} ${ALLOCA} ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES} ADD_DEPS = ${REGEX1} ${ALLOCA1} ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES} -VERSION = 4.1.3 +VERSION = 4.2 DIST=gdb LINT=/usr/5bin/lint @@ -148,7 +148,7 @@ SFILES_MAINDIR = \ remote.c source.c stack.c symmisc.c symtab.c symfile.c \ utils.c valarith.c valops.c valprint.c values.c c-exp.y m2-exp.y \ signame.c cplus-dem.c mem-break.c target.c inftarg.c \ - dbxread.c coffread.c \ + dbxread.c coffread.c elfread.c dwarfread.c \ ieee-float.c language.c parse.c # Source files in subdirectories (which will be handled separately by @@ -253,7 +253,7 @@ OBS = main.o blockframe.o breakpoint.o findvar.o stack.o source.o \ command.o utils.o expprint.o environ.o version.o \ copying.o $(DEPFILES) signame.o cplus-dem.o mem-break.o target.o \ inftarg.o ieee-float.o putenv.o parse.o language.o $(YYOBJ) \ - dbxread.o coffread.o # mipsread.o + dbxread.o coffread.o elfread.o dwarfread.o # mipsread.o RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES) @@ -604,7 +604,7 @@ ${srcdir}/m2-exp.tab.c : $(srcdir)/m2-exp.y ${YACC} $(srcdir)/m2-exp.y mv y.tab.c ${srcdir}/m2-exp.tab.c -# dbxread, coffread, mipsread have dependencies on BFD header files. +# dbxread, coffread, mipsread, elfread have dependencies on BFD header files. dbxread.o: ${srcdir}/dbxread.c ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/dbxread.c @@ -614,6 +614,9 @@ coffread.o: ${srcdir}/coffread.c mipsread.o: ${srcdir}/mipsread.c ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/mipsread.c +elfread.o: ${srcdir}/elfread.c + ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/elfread.c + # Drag in the files that are in another directory. xdr_ld.o: ${srcdir}/vx-share/xdr_ld.c |