makefile.vms 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #
  2. # Makefile for bfd library under openVMS
  3. #
  4. # For use with gnu-make for vms
  5. #
  6. # Created by Klaus K"ampf, kkaempf@rmi.de
  7. #
  8. # Copyright (C) 2012-2022 Free Software Foundation, Inc.
  9. #
  10. # This file is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; either version 3 of the License, or
  13. # (at your option) any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. # GNU General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU General Public License
  21. # along with this program; see the file COPYING3. If not see
  22. # <http://www.gnu.org/licenses/>.
  23. #
  24. ifeq ($(ARCH),IA64)
  25. HOSTFILE=alphavms.h
  26. OBJS:=cpu-ia64.obj,elfxx-ia64.obj,elf64-ia64-vms.obj,\
  27. vms-misc.obj,vms-lib.obj,elf-strtab.obj,corefile.obj,stabs.obj,\
  28. merge.obj,elf-eh-frame.obj,elflink.obj,elf-attrs.obj,dwarf1.obj,elf64.obj
  29. DEFS=SELECT_VECS="&ia64_elf64_vms_vec",\
  30. SELECT_ARCHITECTURES="&bfd_ia64_arch","HAVE_ia64_elf64_vms_vec"=1
  31. endif
  32. ifeq ($(ARCH),ALPHA)
  33. HOSTFILE=alphavms.h
  34. OBJS:=vms-alpha.obj,vms-lib.obj,vms-misc.obj,cpu-alpha.obj
  35. DEFS=SELECT_VECS="&alpha_vms_vec",SELECT_ARCHITECTURES="&bfd_alpha_arch"
  36. endif
  37. OBJS:=$(OBJS),archive.obj,archive64.obj,archures.obj,bfd.obj,bfdio.obj,\
  38. binary.obj,cache.obj,coffgen.obj,compress.obj,corefile.obj,dwarf2.obj,\
  39. elf.obj,format.obj,hash.obj,ihex.obj,init.obj,libbfd.obj,linker.obj,\
  40. opncls.obj,reloc.obj,section.obj,simple.obj,srec.obj,stab-syms.obj,\
  41. syms.obj,targets.obj,tekhex.obj,verilog.obj
  42. ifeq ($(CC),gcc)
  43. CFLAGS=/include=([],[-.include])$(DEFS)
  44. else
  45. OPT=/noopt/debug
  46. CFLAGS=/name=(as_is,shortened)/include=([],"../include")\
  47. /define=("unlink=remove",DEBUGDIR="""GNU$$DEBUGDIR:""",$(DEFS))\
  48. /warns=(infor=(missingreturn,badansialias))$(OPT)
  49. endif
  50. libbfd.olb: $(OBJS)
  51. purge
  52. lib/create libbfd $(OBJS)
  53. targmatch.h: bfd.h
  54. config.h: bfd.h
  55. vms-misc.c: vms.h
  56. targets.c: targmatch.h
  57. clean:
  58. $$ purge
  59. $(RM) libbfd.olb;
  60. $(RM) *.obj;