diff options
Diffstat (limited to 'gnu/usr.bin/binutils/bfd/makefile.vms')
-rw-r--r-- | gnu/usr.bin/binutils/bfd/makefile.vms | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils/bfd/makefile.vms b/gnu/usr.bin/binutils/bfd/makefile.vms new file mode 100644 index 00000000000..1d131d63379 --- /dev/null +++ b/gnu/usr.bin/binutils/bfd/makefile.vms @@ -0,0 +1,46 @@ +# +# Makefile for bfd library under openVMS/AXP +# +# For use with gnu-make for vms +# +# Created by Klaus Kaempf, kkaempf@progis.de +# +# +CC=gcc + +OBJS=archive.obj,archures.obj,bfd.obj,cache.obj,coffgen.obj,corefile.obj,format.obj,\ + init.obj,libbfd.obj,opncls.obj,reloc.obj,section.obj,syms.obj,targets.obj,\ + hash.obj,linker.obj,elf.obj,srec.obj,binary.obj,tekhex.obj,ihex.obj,stab-syms.obj,\ + evax-alpha.obj,evax-emh.obj,evax-egsd.obj,evax-etir.obj,evax-misc.obj,\ + cpu-alpha.obj + +ifeq ($(CC),gcc) +DEFS=/define=(SELECT_VECS="&evax_alpha_vec",SELECT_ARCHITECTURES="&bfd_alpha_arch","unlink=remove") +CFLAGS=/include=([],[-.include])$(DEFS) +else +DEFS=/define=(DEFAULT_VECTOR="evax_alpha_vec",SELECT_VECS="&evax_alpha_vec",\ +SELECT_ARCHITECTURES="&bfd_alpha_arch","unlink=remove","const=",\ +"_bfd_generic_get_section_contents_in_window"="_bfd_generic_get_win_section_cont",\ +"_bfd_elf_section_from_bfd_section"="_bfd_elf_sec_from_bfd_sec") +CFLAGS=/noopt/debug/include=([],[-.include])$(DEFS)/warnings=disable=(missingreturn,implicitfunc) +endif + + +libbfd.olb: sysdep.h bfd.h $(OBJS) + purge + lib/create libbfd $(OBJS) + +sysdep.h: [.hosts]alphavms.h config.h + $(CP) $< $@ + +bfd.h: bfd.h-vms + $(CP) $< $@ + +config.h: config.h-vms + $(CP) $< $@ + +evax-alpha.c: evax.h +evax-emh.c: evax.h +evax-egsd.c: evax.h +evax-etir.c: evax.h +evax-misc.c: evax.h |