1999-05-03 09:29:11 +02:00
|
|
|
#
|
2009-09-01 15:16:53 +02:00
|
|
|
# Makefile for libopcodes under openVMS
|
1999-05-03 09:29:11 +02:00
|
|
|
#
|
|
|
|
# For use with gnu-make for vms
|
|
|
|
#
|
|
|
|
# Created by Klaus K"ampf, kkaempf@progis.de
|
|
|
|
#
|
2019-01-01 11:31:27 +01:00
|
|
|
# Copyright (C) 2012-2019 Free Software Foundation, Inc.
|
2012-12-17 17:56:12 +01:00
|
|
|
#
|
|
|
|
# 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.
|
2015-08-12 13:45:07 +02:00
|
|
|
#
|
2012-12-17 17:56:12 +01:00
|
|
|
# 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.
|
2015-08-12 13:45:07 +02:00
|
|
|
#
|
2012-12-17 17:56:12 +01:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; see the file COPYING3. If not see
|
|
|
|
# <http://www.gnu.org/licenses/>.
|
1999-05-03 09:29:11 +02:00
|
|
|
#
|
2009-09-01 15:16:53 +02:00
|
|
|
|
|
|
|
ifeq ($(ARCH),IA64)
|
|
|
|
OBJS=ia64-dis.obj,ia64-opc.obj
|
|
|
|
ARCHDEF="ARCH_ia64"
|
|
|
|
endif
|
2008-11-14 10:57:35 +01:00
|
|
|
ifeq ($(ARCH),ALPHA)
|
2009-09-01 15:16:53 +02:00
|
|
|
OBJS=alpha-dis.obj,alpha-opc.obj
|
1999-05-03 09:29:11 +02:00
|
|
|
ARCHDEF="ARCH_alpha"
|
2009-09-01 15:16:53 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),VAX)
|
|
|
|
OBJS=vax-dis.obj
|
1999-05-03 09:29:11 +02:00
|
|
|
ARCHDEF="ARCH_vax"
|
|
|
|
endif
|
|
|
|
|
2009-09-01 15:16:53 +02:00
|
|
|
OBJS:=$(OBJS),dis-init.obj,dis-buf.obj,disassemble.obj
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
ifeq ($(CC),gcc)
|
2009-09-01 15:16:53 +02:00
|
|
|
DEFS=/define=($(ARCHDEF))
|
1999-05-03 09:29:11 +02:00
|
|
|
CFLAGS=/include=([],[-.include],[-.bfd])$(DEFS)
|
|
|
|
else
|
2009-09-01 15:16:53 +02:00
|
|
|
DEFS=/define=($(ARCHDEF))
|
2009-05-25 14:43:48 +02:00
|
|
|
OPT=/noopt/debug
|
2009-09-01 15:16:53 +02:00
|
|
|
CFLAGS=$(OPT)/include=([],"../include",[-.bfd])$(DEFS)\
|
2009-05-25 14:43:48 +02:00
|
|
|
/name=(as_is,shortened)
|
1999-05-03 09:29:11 +02:00
|
|
|
endif
|
|
|
|
|
2009-09-01 15:16:53 +02:00
|
|
|
libopcodes.olb: $(OBJS)
|
1999-05-03 09:29:11 +02:00
|
|
|
purge
|
|
|
|
lib/create libopcodes *.obj
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$$ purge
|
|
|
|
$(RM) *.obj;
|
|
|
|
$(RM) libopcodes.olb;
|