summaryrefslogtreecommitdiff
path: root/src/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 /src/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 'src/Makefile')
-rw-r--r--src/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index 4c6349e04..15d1c3d86 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.18.2.14.2.1 2001/08/01 21:24:49 easysw Exp $"
+# "$Id: Makefile,v 1.18.2.14.2.2 2001/08/02 15:31:59 easysw Exp $"
#
# Library makefile for the Fast Light Tool Kit (FLTK).
#
@@ -169,7 +169,8 @@ clean :
touch makedepend
depend:
- $(MAKEDEPEND) -I.. $(CXXFLAGS) $(CPPFILES) $(CFILES) > makedepend
+# $(MAKEDEPEND) -I.. $(CXXFLAGS) $(CPPFILES) $(CFILES) > makedepend
+ makedepend -Y -I.. -f makedepend $(CPPFILES) $(CFILES)
include makedepend
@@ -208,5 +209,5 @@ install: $(LIBRARY) $(DSONAME)
ln -s FL $(includedir)/Fl
#
-# End of "$Id: Makefile,v 1.18.2.14.2.1 2001/08/01 21:24:49 easysw Exp $".
+# End of "$Id: Makefile,v 1.18.2.14.2.2 2001/08/02 15:31:59 easysw Exp $".
#