]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - notifier/Makefile
Remove old files.
[thirdparty/cups.git] / notifier / Makefile
index dea93d70e27634ad5b6e3ffd712b698b412ae2b1..812fcbd69d5852583bf738e78ff520a6aeec41f2 100644 (file)
@@ -3,7 +3,7 @@
 #
 #   Notifier makefile for the Common UNIX Printing System (CUPS).
 #
-#   Copyright 2007 by Apple Inc.
+#   Copyright 2007-2008 by Apple Inc.
 #   Copyright 1997-2007 by Easy Software Products, all rights reserved.
 #
 #   These coded instructions, statements, and computer programs are the
@@ -39,12 +39,15 @@ clean:
 # Install all targets...
 #
 
-install:       all
-       $(INSTALL_DIR) -m 755 $(SERVERBIN)/notifier
-       for file in $(TARGETS); do \
-               $(INSTALL_BIN) $$file $(SERVERBIN)/notifier; \
-       done
-       $(INSTALL_DIR) -m 755 $(CACHEDIR)/rss
+install:       all install-data install-headers install-libs install-exec
+
+
+#
+# Install data files...
+#
+
+install-data:
+       $(INSTALL_DIR) -m 775 $(CACHEDIR)/rss
        -chgrp $(CUPS_GROUP) $(CACHEDIR)/rss
        if test "x$(SYMROOT)" != "x"; then \
                $(INSTALL_DIR) $(SYMROOT); \
@@ -54,6 +57,31 @@ install:     all
        fi
 
 
+#
+# Install programs...
+#
+
+install-exec:
+       $(INSTALL_DIR) -m 755 $(SERVERBIN)/notifier
+       for file in $(TARGETS); do \
+               $(INSTALL_BIN) $$file $(SERVERBIN)/notifier; \
+       done
+
+
+#
+# Install headers...
+#
+
+install-headers:
+
+
+#
+# Install libraries...
+#
+
+install-libs:
+
+
 #
 # Uninstall all targets...
 #