]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - notifier/Makefile
Merge pull request #5677 from reddevillg/patch-2
[thirdparty/cups.git] / notifier / Makefile
index 5587c2083d42f7ddeb7983f5aa3ad6c7dbf476a4..a95b96f7e1124a1574e0a26ae4768d4aa6798dfb 100644 (file)
@@ -1,16 +1,10 @@
 #
-# "$Id: Makefile 7920 2008-09-10 01:04:10Z mike $"
+# Notifier makefile for CUPS.
 #
-#   Notifier makefile for CUPS.
+# Copyright 2007-2019 by Apple Inc.
+# Copyright 1997-2007 by Easy Software Products, all rights reserved.
 #
-#   Copyright 2007-2012 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/".
+# Licensed under Apache License v2.0.  See the file "LICENSE" for more information.
 #
 
 include ../Makedefs
@@ -77,7 +71,10 @@ install-exec:
        done
        if test "x$(SYMROOT)" != "x"; then \
                $(INSTALL_DIR) $(SYMROOT); \
-               cp $(NOTIFIERS) $(SYMROOT); \
+               for file in $(NOTIFIERS); do \
+                       cp $$file $(SYMROOT); \
+                       dsymutil $(SYMROOT)/$$file; \
+               done \
        fi
 
 
@@ -122,7 +119,8 @@ depend:
 
 dbus:  dbus.o ../cups/$(LIBCUPS)
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o dbus dbus.o $(DBUS_NOTIFIERLIBS) $(LIBS)
+       $(LD_CC) $(ALL_LDFLAGS) -o dbus dbus.o $(DBUS_NOTIFIERLIBS) $(LINKCUPS)
+       $(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
 
 
 #
@@ -131,7 +129,8 @@ dbus:       dbus.o ../cups/$(LIBCUPS)
 
 mailto:        mailto.o ../cups/$(LIBCUPS)
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o mailto mailto.o $(LIBS)
+       $(LD_CC) $(ALL_LDFLAGS) -o mailto mailto.o $(LINKCUPS)
+       $(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
 
 
 #
@@ -140,7 +139,8 @@ mailto:     mailto.o ../cups/$(LIBCUPS)
 
 rss:   rss.o ../cups/$(LIBCUPS)
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o rss rss.o $(LIBS)
+       $(LD_CC) $(ALL_LDFLAGS) -o rss rss.o $(LINKCUPS)
+       $(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
 
 
 #
@@ -149,14 +149,10 @@ rss:      rss.o ../cups/$(LIBCUPS)
 
 testnotify:    testnotify.o ../cups/$(LIBCUPS)
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o testnotify testnotify.o $(LIBS)
+       $(LD_CC) $(ALL_LDFLAGS) -o testnotify testnotify.o $(LINKCUPS)
+       $(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
 
 
 $(OBJS):       ../Makedefs
 
 include Dependencies
-
-
-#
-# End of "$Id: Makefile 7920 2008-09-10 01:04:10Z mike $".
-#