mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
29 lines
698 B
Plaintext
29 lines
698 B
Plaintext
$NetBSD: patch-aa,v 1.8 2008/11/10 19:03:15 adam Exp $
|
|
|
|
--- Makefile.orig 2007-11-20 22:15:08.000000000 +0100
|
|
+++ Makefile
|
|
@@ -27,7 +27,7 @@
|
|
|
|
include makeinclude
|
|
|
|
-DIRS = $(IMAGEDIRS) src fluid test documentation
|
|
+DIRS = $(IMAGEDIRS) src fluid documentation
|
|
|
|
all: makeinclude fltk-config
|
|
for dir in $(DIRS); do\
|
|
@@ -35,6 +35,14 @@ all: makeinclude fltk-config
|
|
(cd $$dir; $(MAKE) $(MFLAGS)) || exit 1;\
|
|
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 $(DESTDIR)$(bindir)
|
|
$(RM) $(DESTDIR)$(bindir)/fltk-config
|