mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
32 lines
612 B
Plaintext
32 lines
612 B
Plaintext
|
#
|
||
|
# Makefile for libopcodes under openVMS/AXP
|
||
|
#
|
||
|
# For use with gnu-make for vms
|
||
|
#
|
||
|
# Created by Klaus Kaempf, kkaempf@progis.de
|
||
|
#
|
||
|
#
|
||
|
CC=gcc
|
||
|
|
||
|
OBJS=alpha-dis.obj,dis-buf.obj,disassemble.obj
|
||
|
|
||
|
ifeq ($(CC),gcc)
|
||
|
CFLAGS=/include=([],[-.include],[-.bfd])$(DEFS)
|
||
|
DEFS=/define=(VMS_ASMCODE=1)
|
||
|
else
|
||
|
CFLAGS=/noopt/debug/include=([],[-.include],[-.bfd])$(DEFS)
|
||
|
DEFS=/define=(VMS_ASMCODE=1)
|
||
|
endif
|
||
|
|
||
|
libopcodes.olb: sysdep.h $(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) $< $@
|