489e7e05e2
- Improved color contrast in secondary selection blocks of Fl_Text_Display - Fixed regression in callback handling - Fixed wrong relative path when absolute path has a trailing slash in fl_filename_relative - Fixed multiple selction of files and directories in Fl_File_Chooser - Fixed MSWindows crash when selecting umlauts in Fl_Help_View Changes 1.1.8: - Documentation fixes - Fixed library path in Makefile - Fixed image read for partial regions on X11 - Fixed KDE/Gnome icon paths - Fixed Tab key to wrap around menu bars - Fixed possible timer leak in Scrollbar - Added documentation about the potential limitations of Fl::grab on newer operating systems - Fixed lockout when mixing popups and alerts - Fixed recursion crash in event handling - Fixed missing return code in 'fltk-config' - Fixed inconsistencies with CHANGED flags - Fixed message sent to hidden widgets - Fixed width calculation in Fl_Help_View - Fixed offset bug in OS X pixmap code - Fixed potential buffer overrun in Fl_Preferences - More...
28 lines
698 B
Text
28 lines
698 B
Text
$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
|