X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=opcodes%2Fmakefile.vms;h=3b92f772e4c5631682f9a11cb8506022317c6d95;hb=1a0670f37442b7ae904932b347353046126b990c;hp=5a472a752c827b505cc8a2ba5a1d23027f94ea43;hpb=fa803dc60f0bf01297674c41d001798e18ade4dc;p=deliverable%2Fbinutils-gdb.git diff --git a/opcodes/makefile.vms b/opcodes/makefile.vms index 5a472a752c..3b92f772e4 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-2016 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;