blob: 6c88a7fff95dba6d48108b327eb380b9393e3db2 (
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.5 2004/02/18 05:07:34 ben Exp $
--- Makefile.orig 2003-06-14 22:39:12.000000000 -0700
+++ Makefile
@@ -25,7 +25,7 @@
include makeinclude
-DIRS = src fluid test documentation
+DIRS = src fluid documentation
all: makeinclude
for dir in $(DIRS); do\
@@ -33,6 +33,14 @@ all: makeinclude
(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
-mkdir -p $(bindir)
$(RM) $(bindir)/fltk-config
|