diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-04-20 18:37:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-04-20 18:37:13 +0000 |
commit | c59fa195b80e304f96f09593053a65ac46583011 (patch) | |
tree | 10e09a5cd34c8b6590732ae873d09895eabea31d /binutils/Makefile.in | |
parent | 276971d7d3222186e840b2c02656c57b5647dd39 (diff) | |
download | gdb-c59fa195b80e304f96f09593053a65ac46583011.zip gdb-c59fa195b80e304f96f09593053a65ac46583011.tar.gz gdb-c59fa195b80e304f96f09593053a65ac46583011.tar.bz2 |
start-sanitize-powerpc-netware
* nlmconv.c (powerpc_build_stubs): Take new outbfd argument.
Change caller. Create custom header for new PowerPC NetWare
format.
end-sanitize-powerpc-netware
* Makefile.in (nlmheader.o, nlmconv.o): Update dependencies.
* nlmconv.c: Include bfd.h and libiberty.h with "", not <>.
* nlmheader.y: Include bfd.h with "", not <>.
Diffstat (limited to 'binutils/Makefile.in')
-rw-r--r-- | binutils/Makefile.in | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 09fdf8b..cde55b3 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -344,10 +344,14 @@ objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ is-strip.o: is-strip.c is-ranlib.o: is-ranlib.c not-strip.o: not-strip.c -nlmheader.o: nlmheader.c nlmconv.h $(INCDIR)/nlm/common.h \ - $(INCDIR)/nlm/internal.h -nlmconv.o: $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ - $(BFDDIR)/libnlm.h bucomm.h +nlmheader.o: nlmheader.c ../bfd/bfd.h ../bfd/sysdep.h \ + $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \ + $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h nlmconv.h +nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/libiberty.h ../bfd/sysdep.h \ + $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \ + $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h \ + $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h stage1: force - mkdir stage1 @@ -487,10 +491,16 @@ install: all done; \ else true; fi -# Use binutils.info as the target so that VPATH will DTRT. -# (Use "$<*" in case the output is multiple files, though.) +# This little path search is required because in the FSF net releases, +# the info files are included in the source tree, and that may not be +# the same as the build directory. install-info: binutils.info - for i in $<* ; do \ + if [ -r binutils.info ]; then \ + dir=. ; \ + else \ + dir=$(srcdir) ; \ + fi ; \ + for i in $$dir/binutils.info* ; do \ $(INSTALL_DATA) $$i $(infodir)/$$i ; \ done |