summaryrefslogtreecommitdiff
path: root/notifier/Makefile
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-03-21 23:46:46 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-03-21 23:46:46 +0000
commit50fe720154d2af59cdeeaecf05cc868530e16248 (patch)
tree509bbfd968bcb7bdf5db241e5eb66a2fb1882633 /notifier/Makefile
parentdb0bd74adb0b363f586ceb3314c7ebbbe4596e3d (diff)
downloadcups-50fe720154d2af59cdeeaecf05cc868530e16248.tar.gz
<rdar://problem/5792631> dependency cycle in cups-144 / PrintingCore-250 / ApplicationServices
Merge build system changes to use shared support libraries. Merge build system changes to separate installation of data, program, header, and library files. git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@668 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'notifier/Makefile')
-rw-r--r--notifier/Makefile38
1 files changed, 33 insertions, 5 deletions
diff --git a/notifier/Makefile b/notifier/Makefile
index 49e05ac0b..812fcbd69 100644
--- a/notifier/Makefile
+++ b/notifier/Makefile
@@ -39,11 +39,14 @@ clean:
# Install all targets...
#
-install: all
- $(INSTALL_DIR) -m 755 $(SERVERBIN)/notifier
- for file in $(TARGETS); do \
- $(INSTALL_BIN) $$file $(SERVERBIN)/notifier; \
- done
+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 \
@@ -55,6 +58,31 @@ install: all
#
+# 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...
#