summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2006-01-15 15:15:34 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2006-01-15 15:15:34 +0000
commit464c2f4a5e16c45846b941ea335f6c8b315bc364 (patch)
tree1c3bbbfaa7715260a4d11617876132033fdc831b /Makefile
parent45ff3267cd1e963bd5b87994cb9bb60f19ac6c56 (diff)
Separate the desktop install/uninstall stuff so that users that don't
want desktop integration (or don't have root access) will be able to install/uninstall. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4752 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9ef7805ce..c0740ba31 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
#
# Top-level makefile for the Fast Light Tool Kit (FLTK).
#
-# Copyright 1998-2005 by Bill Spitzak and others.
+# Copyright 1998-2006 by Bill Spitzak and others.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
@@ -45,6 +45,9 @@ install: makeinclude
(cd $$dir; $(MAKE) $(MFLAGS) install) || break;\
done
+install-desktop: makeinclude
+ cd fluid; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
+
uninstall: makeinclude
$(RM) $(DESTDIR)$(bindir)/fltk-config
for dir in FL $(DIRS); do\
@@ -52,6 +55,9 @@ uninstall: makeinclude
(cd $$dir; $(MAKE) $(MFLAGS) uninstall) || break;\
done
+uninstall-desktop: makeinclude
+ cd fluid; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
+
depend: makeinclude
for dir in $(DIRS); do\
echo "=== making dependencies in $$dir ===";\