diff options
author | Stu Grossman <grossman@cygnus> | 1992-11-12 01:15:06 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-11-12 01:15:06 +0000 |
commit | b6113cc40821d1c8273dce275a94dc5adf09e97d (patch) | |
tree | 5088927b6f8150cb5cae29dd7c36bb6d2db7d8b8 /gdb/Makefile.in | |
parent | 74c5c43a822d8556de4f47454355f86d7672ffcf (diff) | |
download | gdb-b6113cc40821d1c8273dce275a94dc5adf09e97d.zip gdb-b6113cc40821d1c8273dce275a94dc5adf09e97d.tar.gz gdb-b6113cc40821d1c8273dce275a94dc5adf09e97d.tar.bz2 |
* Makefile.in: Remove dependancies for 29k-share/dfe/yank.o and
29k-share/dfe/mini2udi.o.
* config/a29k-udi.mt: Remove yank.o and mini2udi.o.
* alldeps.mak, depend: Update to deal with removal of
aforementioned files.
* remote-udi.c: Major cleanups. Clean up udi_open and drop
requirement for useless 'program' argument. Clean up
udi_create_inferior, and udi_load to call common download()
routine. Create download routine to load remote hosts directly
(with the help of BFD) so that we don't need yank.c and
mini2udi.c.
Fix udi_detach to call UDIDisconnect with
the right arguments. Clean up udi_resume, don't assign tip_error
twice. Clean up udi_wait, straighten out status codes. Make
udi_kill really work.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 94c9380..1758173 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -432,9 +432,7 @@ alldeps.mak: ${srcdir}/config -e 's!xdr_rdb.o!vx-share/xdr_rdb.c!' \ -e 's!xdr_regs.o!vx-share/xdr_regs.c!' \ -e 's!udr.o!29k-share/udi/udr.c!' \ - -e 's!yank.o!29k-share/dfe/yank.c!' \ -e 's!udip2soc.o!29k-share/udi/udip2soc.c!' \ - -e 's!mini2udi.o!29k-share/dfe/mini2udi.c!' \ -e 's/\.o/.c/' \ >alldeps2.tmp echo '# Start of "alldeps.mak" definitions' \ @@ -471,18 +469,19 @@ depend: $(SOURCES) Makefile.in @echo for systems other than the one you are using. @echo Also ignore parse errors in valops.c, and any errors in @echo arm-convert.s. - touch xm.h tm.h + touch xm.h tm.h nm.h -$(GCC) -MM -nostdinc -I/usr/include $(CFLAGS) -I$(BFD_DIR) \ -I${READLINE_DIR} $(INCLUDE_CFLAGS) \ `ls $(SOURCES) | grep -v '\.[hy]$$' | \ sort -u` >depend.tmp # If running in srcdir, translate "./foo.c" into "$srcdir/foo.c" except -# for xm.h and tm.h. This allows the same "depend" file to be used +# for xm.h, tm.h and nm.h. This allows the same "depend" file to be used # by the various subdirectories. if [ "${srcdir}" = "." ] ; then \ <depend.tmp sed \ -e 's; ./xm.h; xm.h;g' \ -e 's; ./tm.h; tm.h;g' \ + -e 's; ./nm.h; nm.h;g' \ -e 's; \./; $${srcdir}/;g' \ -e 's; vx-share/; $${srcdir}/vx-share/;g' \ -e 's; nindy-share/; $${srcdir}/nindy-share/;g' \ @@ -498,6 +497,7 @@ depend: $(SOURCES) Makefile.in -e 's; [a-z0-9./]*bfd/; $(BFD_DEP)/;g' \ -e 's; ./xm.h; xm.h config.status;g' \ -e 's; ./tm.h; tm.h config.status;g' \ + -e 's; ./nm.h; nm.h config.status;g' \ >depend rm depend.tmp @@ -773,12 +773,6 @@ udr.o: ${srcdir}/29k-share/udi/udr.c udip2soc.o: ${srcdir}/29k-share/udi/udip2soc.c ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/29k-share/udi/udip2soc.c -mini2udi.o: ${srcdir}/29k-share/dfe/mini2udi.c - ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/29k-share/dfe/mini2udi.c - -yank.o: ${srcdir}/29k-share/dfe/yank.c - ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/29k-share/dfe/yank.c - lint: $(LINTFILES) $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \ `echo ${DEPFILES} | sed 's/\.o /\.c /g' |