994fef0d34
- Documentation updates (STR #186, STR #245, STR #250, STR #277, STR #281, STR #328, STR #338) - fl_scroll() did not handle scrolling from off-screen on WIN32 (STR #315) - Fl_File_Chooser did not allow manual entry of a drive letter (STR #339) - Fl_Menu now uses the boxtype to redraw the menu background (STR #204) - Fl_Scroll now shows the background image when a framed box type is used and the Fl_Scroll is a direct decendent of a window (STR #205) - Added a new_directory_tooltip string pointer to allow localization of the file chooser's new directory button (STR #340) - Added Fl_Menu_::find_item() method (STR #316) - The Fl_Widget copy operator definitions were not conditionally compiled properly (STR #329) - FLUID's Layout functionality did not move child widgets when laying out group widgets (STR #319) - FLUID's Layout->Center In Group functionality did not properly handle widgets that were children of a Fl_Window widget (STR #318) - The Fl_Text_Display destructor did not remove the predelete callback associated with the current buffer (STR #332) - Fixed several bugs in the MacOS X Fl::add_fd() handling (STR #333, STR #337)
28 lines
673 B
Text
28 lines
673 B
Text
$NetBSD: patch-aa,v 1.6 2004/10/21 08:29:45 adam Exp $
|
|
|
|
--- Makefile.orig 2004-10-18 20:22:21.000000000 +0000
|
|
+++ Makefile
|
|
@@ -25,7 +25,7 @@
|
|
|
|
include makeinclude
|
|
|
|
-DIRS = $(IMAGEDIRS) src fluid test documentation
|
|
+DIRS = $(IMAGEDIRS) 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 $(DESTDIR)$(bindir)
|
|
$(RM) $(DESTDIR)$(bindir)/fltk-config
|