]> git.ipfire.org Git - thirdparty/cups.git/blob - notifier/Makefile
<rdar://problem/5792631> dependency cycle in cups-144 / PrintingCore-250 / Applicatio...
[thirdparty/cups.git] / notifier / Makefile
1 #
2 # "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
3 #
4 # Notifier makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2007-2008 by Apple Inc.
7 # Copyright 1997-2007 by Easy Software Products, all rights reserved.
8 #
9 # These coded instructions, statements, and computer programs are the
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/".
14 #
15
16 include ../Makedefs
17
18
19 TARGETS = mailto rss testnotify
20 OBJS = mailto.o rss.o testnotify.o
21
22
23 #
24 # Make all targets...
25 #
26
27 all: $(TARGETS)
28
29
30 #
31 # Clean all object files...
32 #
33
34 clean:
35 $(RM) $(OBJS) $(TARGETS)
36
37
38 #
39 # Install all targets...
40 #
41
42 install: all install-data install-headers install-libs install-exec
43
44
45 #
46 # Install data files...
47 #
48
49 install-data:
50 $(INSTALL_DIR) -m 775 $(CACHEDIR)/rss
51 -chgrp $(CUPS_GROUP) $(CACHEDIR)/rss
52 if test "x$(SYMROOT)" != "x"; then \
53 $(INSTALL_DIR) $(SYMROOT); \
54 for file in $(TARGETS); do \
55 cp $$file $(SYMROOT); \
56 done \
57 fi
58
59
60 #
61 # Install programs...
62 #
63
64 install-exec:
65 $(INSTALL_DIR) -m 755 $(SERVERBIN)/notifier
66 for file in $(TARGETS); do \
67 $(INSTALL_BIN) $$file $(SERVERBIN)/notifier; \
68 done
69
70
71 #
72 # Install headers...
73 #
74
75 install-headers:
76
77
78 #
79 # Install libraries...
80 #
81
82 install-libs:
83
84
85 #
86 # Uninstall all targets...
87 #
88
89 uninstall:
90 for file in $(TARGETS); do \
91 $(RM) $(SERVERBIN)/notifier/$$file; \
92 done
93 -$(RMDIR) $(SERVERBIN)/notifier
94 -$(RMDIR) $(SERVERBIN)
95 -$(RMDIR) $(CACHEDIR)/rss
96
97
98 #
99 # Update dependencies (without system header dependencies...)
100 #
101
102 depend:
103 makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
104
105
106 #
107 # mailto
108 #
109
110 mailto: mailto.o ../cups/$(LIBCUPS)
111 echo Linking $@...
112 $(CC) $(LDFLAGS) -o mailto mailto.o $(LIBS)
113
114
115 #
116 # rss
117 #
118
119 rss: rss.o ../cups/$(LIBCUPS)
120 echo Linking $@...
121 $(CC) $(LDFLAGS) -o rss rss.o $(LIBS)
122
123
124 #
125 # testnotify
126 #
127
128 testnotify: testnotify.o ../cups/$(LIBCUPS)
129 echo Linking $@...
130 $(CC) $(LDFLAGS) -o testnotify testnotify.o $(LIBS)
131
132
133 $(OBJS): ../Makedefs
134
135 include Dependencies
136
137
138 #
139 # End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
140 #