diff options
author | Kung Hsu <kung@cygnus> | 1994-02-28 23:49:08 +0000 |
---|---|---|
committer | Kung Hsu <kung@cygnus> | 1994-02-28 23:49:08 +0000 |
commit | 2f88343dbeab39a209f70b6f7dd9f6e80bb98a7c (patch) | |
tree | ed94fe589b63586957e864d6d9c462626265c70d /bfd/Makefile.in | |
parent | c8ff77bea3a9957c2299eb1f3121ddfca87c08c9 (diff) | |
download | gdb-2f88343dbeab39a209f70b6f7dd9f6e80bb98a7c.zip gdb-2f88343dbeab39a209f70b6f7dd9f6e80bb98a7c.tar.gz gdb-2f88343dbeab39a209f70b6f7dd9f6e80bb98a7c.tar.bz2 |
Modified Files:
ChangeLog targets.c Makefile.in cache.c
Added Files:
i386os9k.c
* i386os9k.c : new file to handle os9k format bfd.
* Makefile.in : Handle new file i386os9k.c
* bfd-in2.h : Add bfd_target_os9k_flavour.
* targets.c : Add bfd_target_os9k_flavour and i386os9k_vec.
* cache.c : Initialize cache_sentinel to 0.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 6caeba9..93f21b8 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -150,6 +150,7 @@ BFD32_BACKENDS = \ i386lynx.o \ netbsd386.o \ i386mach3.o \ + i386os9k.o \ ieee.o \ m68klynx.o \ mipsbsd.o \ @@ -224,7 +225,8 @@ CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.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 \ coff-m88k.c coff-mips.c coff-sh.c trad-core.c newsos3.c \ - i386aout.c i386linux.c netbsd386.c i386mach3.c bout.c aout-adobe.c coff-we32k.c \ + i386aout.c i386linux.c netbsd386.c i386mach3.c i386os9k.c \ + bout.c aout-adobe.c coff-we32k.c \ i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \ cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c cpu-powerpc.c \ cpu-rs6000.c coff-h8300.c som.c cpu-hppa.c cpu-we32k.c reloc16.c \ @@ -301,10 +303,10 @@ $(TARGETLIB): $(OFILES) ofiles targets.o: targets.c Makefile - $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $< + $(CC) -c $(ALL_CFLAGS) $(TDEFAULTS) $< archures.o: archures.c Makefile - $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $< + $(CC) -c $(ALL_CFLAGS) $(TDEFAULTS) $< subdir_do: force @for i in $(DODIRS); do \ |