diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-05-11 04:32:52 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-05-11 04:32:52 +0000 |
commit | 666f5925d2df37a5f761b92e7c91e56e29de1c6f (patch) | |
tree | 7a9695515675b480e633c70f0720b7b39e274938 | |
parent | 6f9077cdc11936918c8a6b7be2e0bfba3d42b11d (diff) | |
download | gdb-666f5925d2df37a5f761b92e7c91e56e29de1c6f.zip gdb-666f5925d2df37a5f761b92e7c91e56e29de1c6f.tar.gz gdb-666f5925d2df37a5f761b92e7c91e56e29de1c6f.tar.bz2 |
* Makefile.in (stmp-bfd.h): Use || instead of ; to force SunOS
make to invoke the shell.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/Makefile.in | 14 |
2 files changed, 14 insertions, 5 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 7b04191..1ed5ef6 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Wed May 11 00:31:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * Makefile.in (stmp-bfd.h): Use || instead of ; to force SunOS + make to invoke the shell. + Tue May 10 14:23:43 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) * section.c (SEC_COFF_SHARED_LIBRARY): Renamed from diff --git a/bfd/Makefile.in b/bfd/Makefile.in index ddd20a2..c95415e 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -113,6 +113,7 @@ ALL_MACHINES = \ # target_vector in targets.c if configured with --with-targets=all. BFD32_BACKENDS = \ aout-adobe.o \ + aout0.o \ aout32.o \ bout.o \ cf-i386lynx.o \ @@ -222,7 +223,7 @@ ALL_CFLAGS=$(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # C source files that correspond to .o's. CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \ archures.c coff-i386.c aout64.c aout32.c sunos.c demo64.c \ - coff-i960.c srec.c tekhex.c oasys.c ieee.c \ + coff-i960.c srec.c tekhex.c oasys.c ieee.c aout0.c \ ecoff.c ecofflink.c coff-m68k.c coff-u68k.c coff-apollo.c \ coff-a29k.c coff-rs6000.c coff-sparc.c coffgen.c format.c \ section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \ @@ -477,7 +478,7 @@ $(BFD_H): stmp-bfd.h ; @true # If the file is still there, kill it. stmp-bfd.h : $(srcdir)/bfd-in2.h Makefile rm -f bfd.h-new 64 ../include/bfd.h - -grep BFD_HOST_64_BIT sysdep.h > 64 + grep BFD_HOST_64_BIT sysdep.h > 64 2>/dev/null || exit 0 sed -e 's/@WORDSIZE@/$(WORDSIZE)/' \ -e "s/@VERSION@/`cat $(srcdir)/VERSION`/" \ -e '/64-bit.*sysdep.h/ r 64' \ @@ -541,6 +542,9 @@ srec.o : srec.c tekhex.o : tekhex.c oasys.o : oasys.c $(INCDIR)/oasys.h liboasys.h ieee.o : ieee.c $(INCDIR)/ieee.h libieee.h +aout0.o : aout0.c aoutf1.h $(INCDIR)/aout/sun4.h libaout.h \ + $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/ar.h aout-target.h ecoff.o : ecoff.c $(INCDIR)/bfdlink.h $(INCDIR)/aout/ar.h \ $(INCDIR)/aout/ranlib.h libaout.h $(INCDIR)/aout/aout64.h \ $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ @@ -602,9 +606,9 @@ coff-we32k.o : coff-we32k.c $(INCDIR)/coff/we32k.h \ $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h i386bsd.o : i386bsd.c libaout.h aout-target.h $(INCDIR)/aout/aout64.h \ $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -i386dynix.o : i386dynix.c libaout.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/dynix3.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h +i386dynix.o : i386dynix.c $(INCDIR)/aout/dynix3.h libaout.h \ + aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h cpu-h8300.o : cpu-h8300.c cpu-i960.o : cpu-i960.c cpu-sparc.o : cpu-sparc.c |