summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCarl E. Thompson <devel-fltk@carlthompson.net>1999-02-25 19:45:04 +0000
committerCarl E. Thompson <devel-fltk@carlthompson.net>1999-02-25 19:45:04 +0000
commit548949b16e775e539f0999b4275220448c494cc3 (patch)
tree4c1cf41c5905f23713b9b924bcc362f4eb87ca2b /Makefile
parent82877b2eb6e29361e682a4a86144ec1daa046a5e (diff)
Adds distclean target that removes makeinclude, config.log, config.h and
config.status -Carl git-svn-id: file:///fltk/svn/fltk/trunk@341 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3e443043e..e3d17304a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.11 1999/01/13 16:25:14 mike Exp $"
+# "$Id: Makefile,v 1.12 1999/02/25 19:45:04 carl Exp $"
#
# Top-level makefile for the Fast Light Tool Kit (FLTK).
#
@@ -67,9 +67,12 @@ clean:
(cd $$dir;$(MAKE) clean);\
done
+distclean: clean
+ rm -f config.log config.h config.status makeinclude
+
makeinclude: configure configh.in makeinclude.in
./configure
#
-# End of "$Id: Makefile,v 1.11 1999/01/13 16:25:14 mike Exp $".
+# End of "$Id: Makefile,v 1.12 1999/02/25 19:45:04 carl Exp $".
#