blob: 82d599b7bfc8ebac801af3d6cf7af04c767f8f6b (
plain)
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
|
$NetBSD: patch-aa,v 1.4 2001/05/26 06:37:46 jlam Exp $
--- Makefile.orig Wed Mar 14 12:20:01 2001
+++ Makefile
@@ -25,7 +25,7 @@
SHELL=/bin/sh
-DIRS = src fluid test
+DIRS = src fluid
all: makeinclude
@for dir in $(DIRS); do\
@@ -35,6 +35,14 @@
fi;\
(cd $$dir; $(MAKE) $(MFLAGS)) || break;\
done
+
+test: makeinclude
+ dir=test;\
+ echo "=== making $$dir ===";\
+ if test ! -f $$dir/makedepend; then\
+ touch $$dir/makedepend;\
+ fi;\
+ (cd $$dir; $(MAKE) $(MFLAGS)) || break;\
install: makeinclude
@for dir in $(DIRS); do\
|