diff options
author | Julian Elischer <julian@FreeBSD.org> | 1998-07-01 19:13:37 +0000 |
---|---|---|
committer | Julian Elischer <julian@FreeBSD.org> | 1998-07-01 19:13:37 +0000 |
commit | 3ce6522991cbd672234db37581c81019fa9330f9 (patch) | |
tree | 4a4d08e31f601b5020751f730b194a8947500912 /devel/a2dev/files/patch-ah | |
parent | Enable 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-ah')
-rw-r--r-- | devel/a2dev/files/patch-ah | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/devel/a2dev/files/patch-ah b/devel/a2dev/files/patch-ah new file mode 100644 index 000000000000..7787a3c51e3a --- /dev/null +++ b/devel/a2dev/files/patch-ah @@ -0,0 +1,30 @@ +diff -ur a2dev-1.2.orig/util/Makefile a2dev-1.2/util/Makefile +--- a2dev-1.2.orig/util/Makefile Wed Mar 22 19:05:32 1995 ++++ a2dev-1.2/util/Makefile Wed Jul 1 18:41:55 1998 +@@ -9,14 +9,15 @@ + + UTIL := util.a + +-SRCS := $(shell ls *.c) ++SRCS := error.c misc.c names.c sym.c hash.c ++ + OBJS := $(SRCS:.c=.o) + + ### + ### Abstract rules + ### + +-default: $(UTIL) ++all: $(UTIL) + + install: default + +@@ -32,7 +33,7 @@ + + $(UTIL): $(OBJS) + $(RM) $(UTIL) +- $(AR) rcs $(UTIL) $(OBJS) ++ $(AR) -rc $(UTIL) $(OBJS) + + ### + ### Additional dependencies |