summaryrefslogtreecommitdiff
path: root/devel/a2dev/files/patch-ah
blob: 7787a3c51e3ac9a2f276e1104e7776462fc41ecf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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