diff options
author | John Gilmore <gnu@cygnus> | 1991-10-26 07:22:46 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-26 07:22:46 +0000 |
commit | 2ce38c6d29f82ccd2bcc90ece2e66456685b9099 (patch) | |
tree | fd2ccb79c93487bce2299f8668c4e4320d058c46 /gdb/Makefile.in | |
parent | c030245775e5c6a10511b5950da1add5513727c2 (diff) | |
download | gdb-2ce38c6d29f82ccd2bcc90ece2e66456685b9099.zip gdb-2ce38c6d29f82ccd2bcc90ece2e66456685b9099.tar.gz gdb-2ce38c6d29f82ccd2bcc90ece2e66456685b9099.tar.bz2 |
Add buildsym.c and buildsym.h.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 05c7f81..e42289c 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -149,7 +149,8 @@ SFILES_MAINDIR = \ 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 elfread.c dwarfread.c \ - ieee-float.c language.c parse.c + ieee-float.c language.c parse.c buildsym.c +# xcoffread.c xcoffexec.c \ # Source files in subdirectories (which will be handled separately by # 'make gdb.tar.Z'). @@ -253,7 +254,9 @@ 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) \ + buildsym.o \ dbxread.o coffread.o elfread.o dwarfread.o # mipsread.o +# xcoffexec.o xcoffread.o \ RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES) @@ -604,7 +607,7 @@ m2-exp.tab.c: $(srcdir)/m2-exp.y ${YACC} $(srcdir)/m2-exp.y mv y.tab.c m2-exp.tab.c -# dbxread, coffread, mipsread, elfread have dependencies on BFD header files. +# The symbol-file readers have dependencies on BFD header files. dbxread.o: ${srcdir}/dbxread.c ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/dbxread.c @@ -617,6 +620,9 @@ mipsread.o: ${srcdir}/mipsread.c elfread.o: ${srcdir}/elfread.c ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/elfread.c +xcoffread.o: ${srcdir}/xcoffread.c + ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffread.c + # Drag in the files that are in another directory. xdr_ld.o: ${srcdir}/vx-share/xdr_ld.c |