summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-08-02 15:32:00 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-08-02 15:32:00 +0000
commit836d2fac260c861106e0d96203bea4a04c9dd2d2 (patch)
treee265f4eab743fc350dac1af4394fe88440c7181c /Makefile
parentbd069130577e28b3b26dbb5637bb3172fe108e81 (diff)
Fix tooltips a la 2.0.
Update 1.1 tooltip interface to be identical to the 2.0 interface for most things (no enter_area function right now...) Add localized makedepend files (no system include files, just ../FL/bla.h) so that builds recompile as necessary. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1516 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 2 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index bde854c79..0c9aff353 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.12.2.6.2.1 2001/08/01 21:24:48 easysw Exp $"
+# "$Id: Makefile,v 1.12.2.6.2.2 2001/08/02 15:31:59 easysw Exp $"
#
# Top-level makefile for the Fast Light Tool Kit (FLTK).
#
@@ -29,18 +29,12 @@ DIRS = src fluid test
all: makeinclude
@for dir in $(DIRS); do\
echo "=== making $$dir ===";\
- if test ! -f $$dir/makedepend; then\
- touch $$dir/makedepend;\
- fi;\
(cd $$dir; $(MAKE) $(MFLAGS)) || break;\
done
install: makeinclude
@for dir in $(DIRS); do\
echo "=== installing $$dir ===";\
- if test ! -f $$dir/makedepend; then\
- touch $$dir/makedepend;\
- fi;\
(cd $$dir; $(MAKE) $(MFLAGS) install) || break;\
done
(cd documentation; $(MAKE) $(MFLAGS) install)
@@ -48,9 +42,6 @@ install: makeinclude
depend: makeinclude
@for dir in $(DIRS); do\
echo "=== making dependencies in $$dir ===";\
- if test ! -f $$dir/makedepend; then\
- touch $$dir/makedepend;\
- fi;\
(cd $$dir; $(MAKE) $(MFLAGS) depend) || break;\
done
@@ -75,5 +66,5 @@ configure: configure.in
autoconf
#
-# End of "$Id: Makefile,v 1.12.2.6.2.1 2001/08/01 21:24:48 easysw Exp $".
+# End of "$Id: Makefile,v 1.12.2.6.2.2 2001/08/02 15:31:59 easysw Exp $".
#