mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
3ce6522991
Apple ][ assembler and linker written by archie in the dark ages.
31 lines
545 B
Plaintext
31 lines
545 B
Plaintext
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
|