]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - templates/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / templates / Makefile
index 8eded7d396dba9d08a80425bb8247bf791667bbe..b374ddda35f2d6805be8c90a9c50c4c5ed8c69e4 100644 (file)
@@ -1,5 +1,5 @@
 #
-# "$Id: Makefile 5222 2006-03-03 18:57:56Z mike $"
+# "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $"
 #
 #   Template makefile for the Common UNIX Printing System (CUPS).
 #
@@ -108,6 +108,13 @@ all:
 clean:
 
 
+#
+# Dummy depend...
+#
+
+depend:
+
+
 #
 # Install files...
 #
@@ -128,5 +135,22 @@ install: all
 
 
 #
-# End of "$Id: Makefile 5222 2006-03-03 18:57:56Z mike $".
+# Uninstall files...
+#
+
+uninstall:
+       for file in $(FILES); do \
+               $(RM) $(DATADIR)/templates/$$file; \
+       done
+       for lang in $(LANGUAGES); do \
+               for file in $(FILES); do \
+                       $(RM) $(DATADIR)/templates/$$lang/$$file; \
+               done \
+               $(RMDIR) $(DATADIR)/templates/$$lang; \
+       done
+       -$(RMDIR) $(DATADIR)/templates
+
+
+#
+# End of "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $".
 #