diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-05-27 16:58:05 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-05-27 16:58:05 +0000 |
commit | c06e55d99ac38bd32492481f46b69ec62ee1e433 (patch) | |
tree | 7567d7ea926780a1d5242d47399b3a267283bb3a /bfd/makefile.dos | |
parent | 60e8a534070c8dc181b2fb4971b8199597a168f1 (diff) | |
download | gdb-c06e55d99ac38bd32492481f46b69ec62ee1e433.zip gdb-c06e55d99ac38bd32492481f46b69ec62ee1e433.tar.gz gdb-c06e55d99ac38bd32492481f46b69ec62ee1e433.tar.bz2 |
changes from gas-2.3/binutils-2.4 dist (details in branch log msgs, changelogs)
Diffstat (limited to 'bfd/makefile.dos')
-rw-r--r-- | bfd/makefile.dos | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/bfd/makefile.dos b/bfd/makefile.dos new file mode 100644 index 0000000..c062b5f --- /dev/null +++ b/bfd/makefile.dos @@ -0,0 +1,46 @@ +CFLAGS=-O2 + +.c.o : + gcc $(CFLAGS) -I. -I../include -c $< + +all : libbfd.a + +targets.o : targets.c + gcc $(CFLAGS) -I. -I../include -DSELECT_VECS=&go32coff_vec,&i386aout_vec -DDEFAULT_VECTOR=go32coff_vec -c $*.c + +archures.o : archures.c + gcc $(CFLAGS) -I. -I../include -DSELECT_ARCHITECTURES=bfd_i386_arch -c $*.c + +OBJS = \ + libbfd.o \ + opncls.o \ + bfd.o \ + archive.o \ + targets.o \ + cache.o \ + archures.o \ + core.o \ + section.o \ + format.o \ + syms.o \ + reloc.o \ + init.o \ + ctor.o \ + coffgen.o \ + srec.o \ + hash.o \ + linker.o \ + ecoff.o \ + ecofflink.o \ + elf.o \ + aout32.o \ + stab-sym.o \ + i386aout.o \ + cpu-i386.o \ + coff-go32.o \ + $E + +libbfd.a : $(OBJS) + -rm libbfd.a + ar rvs libbfd.a $(OBJS) + ranlib libbfd.a |