summaryrefslogtreecommitdiff
path: root/notifier/Makefile
diff options
context:
space:
mode:
authorjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2007-03-14 16:55:44 +0000
committerjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2007-03-14 16:55:44 +0000
commitf7deaa1a21758ec90bf23314af018481ea8aea7f (patch)
tree28c1e9c935060b27e10b2e9daa788f69508f3726 /notifier/Makefile
parentb86bc4cf571c35972a94a634ea884baff9799fa9 (diff)
downloadcups-f7deaa1a21758ec90bf23314af018481ea8aea7f.tar.gz
Load cups into easysw/current.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@279 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'notifier/Makefile')
-rw-r--r--notifier/Makefile22
1 files changed, 17 insertions, 5 deletions
diff --git a/notifier/Makefile b/notifier/Makefile
index ecfd7a51f..f2b221605 100644
--- a/notifier/Makefile
+++ b/notifier/Makefile
@@ -1,9 +1,9 @@
#
-# "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $"
+# "$Id: Makefile 6304 2007-02-22 22:06:23Z mike $"
#
# Notifier makefile for the Common UNIX Printing System (CUPS).
#
-# Copyright 1997-2006 by Easy Software Products, all rights reserved.
+# Copyright 1997-2007 by Easy Software Products, all rights reserved.
#
# These coded instructions, statements, and computer programs are the
# property of Easy Software Products and are protected by Federal
@@ -25,8 +25,8 @@
include ../Makedefs
-TARGETS = mailto testnotify
-OBJS = mailto.o testnotify.o
+TARGETS = mailto rss testnotify
+OBJS = mailto.o rss.o testnotify.o
#
@@ -53,6 +53,8 @@ install: all
for file in $(TARGETS); do \
$(INSTALL_BIN) $$file $(SERVERBIN)/notifier; \
done
+ $(INSTALL_DIR) -m 755 $(CACHEDIR)/rss
+ -chgrp $(CUPS_GROUP) $(CACHEDIR)/rss
#
@@ -65,6 +67,7 @@ uninstall:
done
-$(RMDIR) $(SERVERBIN)/notifier
-$(RMDIR) $(SERVERBIN)
+ -$(RMDIR) $(CACHEDIR)/rss
#
@@ -85,6 +88,15 @@ mailto: mailto.o ../cups/$(LIBCUPS)
#
+# rss
+#
+
+rss: rss.o ../cups/$(LIBCUPS)
+ echo Linking $@...
+ $(CC) $(LDFLAGS) -o rss rss.o $(LIBS)
+
+
+#
# testnotify
#
@@ -99,5 +111,5 @@ include Dependencies
#
-# End of "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $".
+# End of "$Id: Makefile 6304 2007-02-22 22:06:23Z mike $".
#