mirror of
https://github.com/fltk/fltk.git
synced 2026-06-04 23:42:15 +08:00
Multiple patches from Bill:
- Double-buffered window fixes. - Tabs fixes. - X/WIN32 fixes. - Fl_Input fixes. - Support for vsnprintf and friends. - Support for printf-style arguments in utility functions. git-svn-id: file:///fltk/svn/fltk/trunk@52 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# "$Id: Makefile,v 1.6 1998/10/21 22:03:51 mike Exp $"
|
||||
# "$Id: Makefile,v 1.7 1998/11/05 16:04:35 mike Exp $"
|
||||
#
|
||||
# Top-level makefile for the Fast Light Tool Kit (FLTK).
|
||||
#
|
||||
@@ -27,8 +27,8 @@ SHELL=/bin/sh
|
||||
|
||||
DIRS = src fluid test
|
||||
|
||||
all:
|
||||
for dir in $(DIRS); do\
|
||||
all: makeinclude
|
||||
@for dir in $(DIRS); do\
|
||||
echo "=== making $$dir ===";\
|
||||
if test ! -f $$dir/makedepend; then\
|
||||
touch $$dir/makedepend;\
|
||||
@@ -36,8 +36,8 @@ all:
|
||||
(cd $$dir;$(MAKE));\
|
||||
done
|
||||
|
||||
install:
|
||||
for dir in $(DIRS); do\
|
||||
install: makeinclude
|
||||
@for dir in $(DIRS); do\
|
||||
echo "=== installing $$dir ===";\
|
||||
if test ! -f $$dir/makedepend; then\
|
||||
touch $$dir/makedepend;\
|
||||
@@ -45,8 +45,8 @@ install:
|
||||
(cd $$dir;$(MAKE) install);\
|
||||
done
|
||||
|
||||
depend:
|
||||
for dir in $(DIRS); do\
|
||||
depend: makeinclude
|
||||
@for dir in $(DIRS); do\
|
||||
echo "=== making dependencies in $$dir ===";\
|
||||
if test ! -f $$dir/makedepend; then\
|
||||
touch $$dir/makedepend;\
|
||||
@@ -56,11 +56,14 @@ depend:
|
||||
|
||||
clean:
|
||||
-@ rm -f core config.cache *.o *.bck
|
||||
for dir in $(DIRS); do\
|
||||
@for dir in $(DIRS); do\
|
||||
echo "=== cleaning $$dir ===";\
|
||||
(cd $$dir;$(MAKE) clean);\
|
||||
done
|
||||
|
||||
makeinclude: configure configh.in makeinclude.in
|
||||
./configure
|
||||
|
||||
#
|
||||
# End of "$Id: Makefile,v 1.6 1998/10/21 22:03:51 mike Exp $".
|
||||
# End of "$Id: Makefile,v 1.7 1998/11/05 16:04:35 mike Exp $".
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user