summaryrefslogtreecommitdiff
path: root/devel/a2dev/files/patch-ag
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1998-07-01 19:13:37 +0000
committerJulian Elischer <julian@FreeBSD.org>1998-07-01 19:13:37 +0000
commit3ce6522991cbd672234db37581c81019fa9330f9 (patch)
tree4a4d08e31f601b5020751f730b194a8947500912 /devel/a2dev/files/patch-ag
parentEnable sis, a new circuit emulator port. (diff)
Submitted by: archie Cobbs (archie@whistle.com)
Apple ][ assembler and linker written by archie in the dark ages.
Notes
Notes: svn path=/head/; revision=11642
Diffstat (limited to 'devel/a2dev/files/patch-ag')
-rw-r--r--devel/a2dev/files/patch-ag39
1 files changed, 39 insertions, 0 deletions
diff --git a/devel/a2dev/files/patch-ag b/devel/a2dev/files/patch-ag
new file mode 100644
index 000000000000..43f1ec2bfe9f
--- /dev/null
+++ b/devel/a2dev/files/patch-ag
@@ -0,0 +1,39 @@
+diff -ur a2dev-1.2.orig/test/Makefile a2dev-1.2/test/Makefile
+--- a2dev-1.2.orig/test/Makefile Mon Mar 27 22:16:25 1995
++++ a2dev-1.2/test/Makefile Wed Jul 1 18:34:39 1998
+@@ -11,11 +11,12 @@
+ ### Default is to do nothing -- "make verify" runs the test.
+ ###
+
+-default:
++all: verify
++ @echo
+
+ install:
+
+-verify: clean all.exec *.CHECK
++verify: all.exec *.CHECK
+ @echo
+
+ %.CHECK: %
+@@ -25,16 +26,16 @@
+ @echo '***' $< is 'OK!'
+
+ all.o: foo.o bar.o new.o
+- a2link -o $@ $^
++ ../link/a2link -o $@ $^
+
+ %.lst %.o: %.s
+- a2asm -l $< > $*.lst
++ ../asm/a2asm -l $< > $*.lst
+
+ %.obj: %.o
+- a2load $< > $@
++ ../load/a2load $< > $@
+
+ %.exec: %.o
+- a2load -e $< > $@
++ ../load/a2load -e $< > $@
+
+ clean:
+ rm -f *.o *.obj *.lst *.exec