]> git.ipfire.org Git - thirdparty/cups.git/blame - notifier/Makefile
Merge changes from CUPS 1.7svn-r10710.
[thirdparty/cups.git] / notifier / Makefile
CommitLineData
ef416fc2 1#
b19ccc9e 2# "$Id: Makefile 7920 2008-09-10 01:04:10Z mike $"
ef416fc2 3#
321d8d57 4# Notifier makefile for CUPS.
ef416fc2 5#
12f89d24 6# Copyright 2007-2012 by Apple Inc.
f7deaa1a 7# Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 8#
9# These coded instructions, statements, and computer programs are the
bc44d920 10# property of Apple Inc. and are protected by Federal copyright
11# law. Distribution and use rights are outlined in the file "LICENSE.txt"
12# which should have been included with this file. If this file is
13# file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14#
15
16include ../Makedefs
17
18
c5571a1d
MS
19NOTIFIERS = $(DBUS_NOTIFIER) mailto rss
20TARGETS = $(NOTIFIERS) testnotify
21OBJS = dbus.o mailto.o rss.o testnotify.o
ef416fc2 22
23
24#
25# Make all targets...
26#
27
28all: $(TARGETS)
29
30
c9fc04c6
MS
31#
32# Make library targets...
33#
34
35libs:
36
37
5f64df29
MS
38#
39# Make unit tests...
40#
41
42unittests:
43
44
ef416fc2 45#
46# Clean all object files...
47#
48
49clean:
c5571a1d 50 $(RM) $(OBJS) $(TARGETS) dbus.h
ef416fc2 51
52
53#
54# Install all targets...
55#
56
50fe7201
MS
57install: all install-data install-headers install-libs install-exec
58
59
60#
61# Install data files...
62#
63
64install-data:
e07d4801 65 $(INSTALL_DIR) -m 775 -g $(CUPS_GROUP) $(CACHEDIR)/rss
ef416fc2 66
67
50fe7201
MS
68#
69# Install programs...
70#
71
72install-exec:
c5571a1d 73 echo Installing notifiers in $(SERVERBIN)/notifier...
50fe7201 74 $(INSTALL_DIR) -m 755 $(SERVERBIN)/notifier
c5571a1d
MS
75 for file in $(NOTIFIERS); do \
76 $(INSTALL_BIN) $$file $(SERVERBIN)/notifier; \
77 done
49d87452
MS
78 if test "x$(SYMROOT)" != "x"; then \
79 $(INSTALL_DIR) $(SYMROOT); \
80 cp $(NOTIFIERS) $(SYMROOT); \
81 fi
50fe7201
MS
82
83
84#
85# Install headers...
86#
87
88install-headers:
89
90
91#
92# Install libraries...
93#
94
95install-libs:
96
97
757d2cad 98#
99# Uninstall all targets...
100#
101
102uninstall:
c5571a1d 103 for file in $(NOTIFIERS); do \
757d2cad 104 $(RM) $(SERVERBIN)/notifier/$$file; \
105 done
106 -$(RMDIR) $(SERVERBIN)/notifier
107 -$(RMDIR) $(SERVERBIN)
f7deaa1a 108 -$(RMDIR) $(CACHEDIR)/rss
757d2cad 109
110
ef416fc2 111#
112# Update dependencies (without system header dependencies...)
113#
114
115depend:
12f89d24 116 $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
ef416fc2 117
118
c5571a1d
MS
119#
120# dbus
121#
122
123dbus: dbus.o ../cups/$(LIBCUPS)
124 echo Linking $@...
125 $(CC) $(LDFLAGS) -o dbus dbus.o $(DBUS_NOTIFIERLIBS) $(LIBS)
126
c5571a1d 127
ef416fc2 128#
129# mailto
130#
131
132mailto: mailto.o ../cups/$(LIBCUPS)
133 echo Linking $@...
134 $(CC) $(LDFLAGS) -o mailto mailto.o $(LIBS)
135
136
f7deaa1a 137#
138# rss
139#
140
141rss: rss.o ../cups/$(LIBCUPS)
142 echo Linking $@...
143 $(CC) $(LDFLAGS) -o rss rss.o $(LIBS)
144
145
ef416fc2 146#
147# testnotify
148#
149
150testnotify: testnotify.o ../cups/$(LIBCUPS)
151 echo Linking $@...
152 $(CC) $(LDFLAGS) -o testnotify testnotify.o $(LIBS)
153
154
155$(OBJS): ../Makedefs
156
157include Dependencies
158
159
160#
b19ccc9e 161# End of "$Id: Makefile 7920 2008-09-10 01:04:10Z mike $".
ef416fc2 162#