]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - notifier/Makefile
Remove all of the Subversion keywords from various source files.
[thirdparty/cups.git] / notifier / Makefile
index 365a620399d8bbf0db5451cd028e34aaae5a6713..dd3e5c8600570d5642c2cbb6a52765378264a4e8 100644 (file)
@@ -1,23 +1,22 @@
 #
-# "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
+# Notifier makefile for CUPS.
 #
-#   Notifier makefile for the Common UNIX Printing System (CUPS).
+# Copyright 2007-2012 by Apple Inc.
+# Copyright 1997-2007 by Easy Software Products, all rights reserved.
 #
-#   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
-#   property of Apple Inc. and are protected by Federal copyright
-#   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-#   which should have been included with this file.  If this file is
-#   file is missing or damaged, see the license at "http://www.cups.org/".
+# These coded instructions, statements, and computer programs are the
+# property of Apple Inc. and are protected by Federal copyright
+# law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+# which should have been included with this file.  If this file is
+# file is missing or damaged, see the license at "http://www.cups.org/".
 #
 
 include ../Makedefs
 
 
-TARGETS =      mailto rss testnotify
-OBJS   =       mailto.o rss.o testnotify.o
+NOTIFIERS =    $(DBUS_NOTIFIER) mailto rss
+TARGETS =      $(NOTIFIERS) testnotify
+OBJS   =       dbus.o mailto.o rss.o testnotify.o
 
 
 #
@@ -34,12 +33,19 @@ all:        $(TARGETS)
 libs:
 
 
+#
+# Make unit tests...
+#
+
+unittests:
+
+
 #
 # Clean all object files...
 #
 
 clean:
-       $(RM) $(OBJS) $(TARGETS)
+       $(RM) $(OBJS) $(TARGETS) dbus.h
 
 
 #
@@ -54,14 +60,7 @@ install:     all install-data install-headers install-libs install-exec
 #
 
 install-data:
-       $(INSTALL_DIR) -m 775 $(CACHEDIR)/rss
-       -chgrp $(CUPS_GROUP) $(CACHEDIR)/rss
-       if test "x$(SYMROOT)" != "x"; then \
-               $(INSTALL_DIR) $(SYMROOT); \
-               for file in $(TARGETS); do \
-                       cp $$file $(SYMROOT); \
-               done \
-       fi
+       $(INSTALL_DIR) -m 775 -g $(CUPS_GROUP) $(CACHEDIR)/rss
 
 
 #
@@ -69,10 +68,18 @@ install-data:
 #
 
 install-exec:
+       echo Installing notifiers in $(SERVERBIN)/notifier...
        $(INSTALL_DIR) -m 755 $(SERVERBIN)/notifier
-       for file in $(TARGETS); do \
+       for file in $(NOTIFIERS); do \
                $(INSTALL_BIN) $$file $(SERVERBIN)/notifier; \
        done
+       if test "x$(SYMROOT)" != "x"; then \
+               $(INSTALL_DIR) $(SYMROOT); \
+               for file in $(NOTIFIERS); do \
+                       cp $$file $(SYMROOT); \
+                       dsymutil $(SYMROOT)/$$file; \
+               done \
+       fi
 
 
 #
@@ -94,7 +101,7 @@ install-libs:
 #
 
 uninstall:
-       for file in $(TARGETS); do \
+       for file in $(NOTIFIERS); do \
                $(RM) $(SERVERBIN)/notifier/$$file; \
        done
        -$(RMDIR) $(SERVERBIN)/notifier
@@ -107,7 +114,16 @@ uninstall:
 #
 
 depend:
-       makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
+       $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
+
+
+#
+# dbus
+#
+
+dbus:  dbus.o ../cups/$(LIBCUPS)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o dbus dbus.o $(DBUS_NOTIFIERLIBS) $(LIBS)
 
 
 #
@@ -140,8 +156,3 @@ testnotify: testnotify.o ../cups/$(LIBCUPS)
 $(OBJS):       ../Makedefs
 
 include Dependencies
-
-
-#
-# End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
-#