]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - notifier/Makefile
Merge pull request #5471 from Atalanttore/patch-2
[thirdparty/cups.git] / notifier / Makefile
index 064bd4df0cfcae5e037ec7569c44a1f84cefae48..741ef8daa3b1ecff13c89bbc60df063fb312bfd9 100644 (file)
@@ -1,32 +1,18 @@
 #
-# "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $"
+# Notifier makefile for CUPS.
 #
-#   Notifier makefile for the Common UNIX Printing System (CUPS).
+# Copyright 2007-2018 by Apple Inc.
+# Copyright 1997-2007 by Easy Software Products, all rights reserved.
 #
-#   Copyright 1997-2006 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
-#   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 missing or damaged please contact Easy Software Products
-#   at:
-#
-#       Attn: CUPS Licensing Information
-#       Easy Software Products
-#       44141 Airport View Drive, Suite 204
-#       Hollywood, Maryland 20636 USA
-#
-#       Voice: (301) 373-9600
-#       EMail: cups-info@cups.org
-#         WWW: http://www.cups.org
+# Licensed under Apache License v2.0.  See the file "LICENSE" for more information.
 #
 
 include ../Makedefs
 
 
-TARGETS =      mailto testnotify
-OBJS   =       mailto.o testnotify.o
+NOTIFIERS =    $(DBUS_NOTIFIER) mailto rss
+TARGETS =      $(NOTIFIERS) testnotify
+OBJS   =       dbus.o mailto.o rss.o testnotify.o
 
 
 #
@@ -36,23 +22,74 @@ OBJS        =       mailto.o testnotify.o
 all:   $(TARGETS)
 
 
+#
+# Make library targets...
+#
+
+libs:
+
+
+#
+# Make unit tests...
+#
+
+unittests:
+
+
 #
 # Clean all object files...
 #
 
 clean:
-       $(RM) $(OBJS) $(TARGETS)
+       $(RM) $(OBJS) $(TARGETS) dbus.h
 
 
 #
 # Install all targets...
 #
 
-install:       all
+install:       all install-data install-headers install-libs install-exec
+
+
+#
+# Install data files...
+#
+
+install-data:
+       $(INSTALL_DIR) -m 775 -g $(CUPS_GROUP) $(CACHEDIR)/rss
+
+
+#
+# Install programs...
+#
+
+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
+
+
+#
+# Install headers...
+#
+
+install-headers:
+
+
+#
+# Install libraries...
+#
+
+install-libs:
 
 
 #
@@ -60,11 +97,12 @@ install:    all
 #
 
 uninstall:
-       for file in $(TARGETS); do \
+       for file in $(NOTIFIERS); do \
                $(RM) $(SERVERBIN)/notifier/$$file; \
        done
        -$(RMDIR) $(SERVERBIN)/notifier
        -$(RMDIR) $(SERVERBIN)
+       -$(RMDIR) $(CACHEDIR)/rss
 
 
 #
@@ -72,7 +110,17 @@ 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 $@...
+       $(LD_CC) $(LDFLAGS) -o dbus dbus.o $(DBUS_NOTIFIERLIBS) $(LIBS)
+       $(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
 
 
 #
@@ -81,7 +129,18 @@ depend:
 
 mailto:        mailto.o ../cups/$(LIBCUPS)
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o mailto mailto.o $(LIBS)
+       $(LD_CC) $(LDFLAGS) -o mailto mailto.o $(LIBS)
+       $(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
+
+
+#
+# rss
+#
+
+rss:   rss.o ../cups/$(LIBCUPS)
+       echo Linking $@...
+       $(LD_CC) $(LDFLAGS) -o rss rss.o $(LIBS)
+       $(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
 
 
 #
@@ -90,14 +149,10 @@ mailto:    mailto.o ../cups/$(LIBCUPS)
 
 testnotify:    testnotify.o ../cups/$(LIBCUPS)
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o testnotify testnotify.o $(LIBS)
+       $(LD_CC) $(LDFLAGS) -o testnotify testnotify.o $(LIBS)
+       $(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
 
 
 $(OBJS):       ../Makedefs
 
 include Dependencies
-
-
-#
-# End of "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $".
-#