Tue Jun 18 15:08:54 1996 Klaus Kaempf <kkaempf@progis.de>
authorIan Lance Taylor <ian@airs.com>
Tue, 18 Jun 1996 19:10:42 +0000 (19:10 +0000)
committerIan Lance Taylor <ian@airs.com>
Tue, 18 Jun 1996 19:10:42 +0000 (19:10 +0000)
* makefile.vms: New file.

* alpha-dis.c (print_insn_alpha): Print lda ra,lit(rz) as mov.

opcodes/.Sanitize
opcodes/ChangeLog
opcodes/makefile.vms [new file with mode: 0644]

index 39e23fe0dbe9211437d6d6b99d1eeb37b82c58c7..f6b1819cba512cad986b45a2e1a254bb025b7445 100644 (file)
@@ -54,6 +54,7 @@ i960-dis.c
 m68k-dis.c
 m68k-opc.c
 m88k-dis.c
+makefile.vms
 mips-dis.c
 mips-opc.c
 mpw-config.in
index 80a391bd0700a6674cba6c9dde46168e950a5d55..1c5bd40eee1ff7351d475171f2bfdf3b530aa240 100644 (file)
@@ -1,3 +1,18 @@
+Tue Jun 18 15:08:54 1996  Klaus Kaempf  <kkaempf@progis.de>
+
+       * makefile.vms: New file.
+
+       * alpha-dis.c (print_insn_alpha): Print lda ra,lit(rz) as mov.
+
+Mon Jun 10 18:50:38 1996  Ian Lance Taylor  <ian@cygnus.com>
+
+       * h8300-dis.c (bfd_h8_disassemble): Always print ABS8MEM with :8,
+       regardless of plen.
+
+Tue Jun  4 09:15:53 1996  Doug Evans  <dje@canuck.cygnus.com>
+
+       * i386-dis.c (OP_OFF): Call append_prefix.
+
 Thu May 23 15:18:23 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
 
        * ppc-opc.c (instruction encoding macros): Add explicit casts to
diff --git a/opcodes/makefile.vms b/opcodes/makefile.vms
new file mode 100644 (file)
index 0000000..5a472a7
--- /dev/null
@@ -0,0 +1,31 @@
+#
+# 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) $< $@
This page took 0.052983 seconds and 4 git commands to generate.