summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-11-05 16:04:53 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-11-05 16:04:53 +0000
commit80b1529ef4d69d9e34a48a419a018d7f4d64054b (patch)
tree7c743dc2f7f17654f1535314f6b0e6c5eadfc21b /Makefile
parent60399e3945dcfe9a2bb9f00f794d9e8634dd6bd9 (diff)
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 12 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 93d41fec4..953f968f5 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $".
#