X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=opcodes%2Fmakefile.vms;h=bd167d30ca7baa467cd94c9d3238f42fd74ad4f5;hb=1a1e2852a56da48da1f3b5c80d23c3998a9000fc;hp=5a472a752c827b505cc8a2ba5a1d23027f94ea43;hpb=03496c49d437508d0cd66f95598ab3081de107e4;p=deliverable%2Fbinutils-gdb.git diff --git a/opcodes/makefile.vms b/opcodes/makefile.vms index 5a472a752c..bd167d30ca 100644 --- a/opcodes/makefile.vms +++ b/opcodes/makefile.vms @@ -1,31 +1,57 @@ # -# Makefile for libopcodes under openVMS/AXP +# Makefile for libopcodes under openVMS # # For use with gnu-make for vms # -# Created by Klaus Kaempf, kkaempf@progis.de +# Created by Klaus K"ampf, kkaempf@progis.de # +# Copyright (C) 2012-2019 Free Software Foundation, Inc. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING3. If not see +# . # -CC=gcc -OBJS=alpha-dis.obj,dis-buf.obj,disassemble.obj +ifeq ($(ARCH),IA64) +OBJS=ia64-dis.obj,ia64-opc.obj +ARCHDEF="ARCH_ia64" +endif +ifeq ($(ARCH),ALPHA) +OBJS=alpha-dis.obj,alpha-opc.obj +ARCHDEF="ARCH_alpha" +endif +ifeq ($(ARCH),VAX) +OBJS=vax-dis.obj +ARCHDEF="ARCH_vax" +endif + +OBJS:=$(OBJS),dis-init.obj,dis-buf.obj,disassemble.obj ifeq ($(CC),gcc) +DEFS=/define=($(ARCHDEF)) CFLAGS=/include=([],[-.include],[-.bfd])$(DEFS) -DEFS=/define=(VMS_ASMCODE=1) else -CFLAGS=/noopt/debug/include=([],[-.include],[-.bfd])$(DEFS) -DEFS=/define=(VMS_ASMCODE=1) +DEFS=/define=($(ARCHDEF)) +OPT=/noopt/debug +CFLAGS=$(OPT)/include=([],"../include",[-.bfd])$(DEFS)\ + /name=(as_is,shortened) endif -libopcodes.olb: sysdep.h $(OBJS) +libopcodes.olb: $(OBJS) purge lib/create libopcodes *.obj -disassemble.obj: disassemble.c - $(CC)$(CFLAGS)/define=("ARCH_alpha") $< - -alpha-dis.obj: alpha-dis.c alpha-opc.h - -sysdep.h: [-.bfd.hosts]alphavms.h - $(CP) $< $@ +clean: + $$ purge + $(RM) *.obj; + $(RM) libopcodes.olb;