summaryrefslogtreecommitdiff
path: root/conf/Makefile
diff options
context:
space:
mode:
authorjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-03-08 00:32:35 +0000
committerjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-03-08 00:32:35 +0000
commit757d2cad8f3f75c420ad2e462b787cd9cf8a7a62 (patch)
treee68a780d9afd61caedc6c56da5fc029000e80835 /conf/Makefile
parent4744bd907e6750c26bba4354d986e342406147ca (diff)
downloadcups-757d2cad8f3f75c420ad2e462b787cd9cf8a7a62.tar.gz
Load cups into easysw/current.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@80 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'conf/Makefile')
-rw-r--r--conf/Makefile28
1 files changed, 25 insertions, 3 deletions
diff --git a/conf/Makefile b/conf/Makefile
index 82a796509..e806900af 100644
--- a/conf/Makefile
+++ b/conf/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile 5185 2006-02-26 15:27:14Z mike $"
+# "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $"
#
# Configuration file makefile for the Common UNIX Printing System (CUPS).
#
@@ -28,7 +28,7 @@ include ../Makedefs
# Config files...
#
-KEEP = client.conf cupsd.conf
+KEEP = cupsd.conf
REPLACE = mime.convs mime.types
@@ -47,6 +47,13 @@ clean:
#
+# Dummy depend...
+#
+
+depend:
+
+
+#
# Install files...
#
@@ -81,5 +88,20 @@ install: all
#
-# End of "$Id: Makefile 5185 2006-02-26 15:27:14Z mike $".
+# Uninstall files...
+#
+
+uninstall:
+ for file in $(KEEP) $(REPLACE) cupsd.conf.default; do \
+ $(RM) $(SERVERROOT)/$$file; \
+ done
+ -$(RMDIR) $(SERVERROOT)
+ -if test x$(PAMDIR) != x; then \
+ $(RM) $(BUILDROOT)$(PAMDIR)/cups; \
+ $(RMDIR) $(BUILDROOT)$(PAMDIR); \
+ fi
+
+
+#
+# End of "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $".
#