]> git.ipfire.org Git - thirdparty/cups.git/blob - notifier/Makefile
90b51b4d7f2d5bf0bf5259bda26c1d738c476219
[thirdparty/cups.git] / notifier / Makefile
1 #
2 # "$Id: Makefile 7558 2008-05-12 23:46:44Z 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 # Make library targets...
32 #
33
34 libs:
35
36
37 #
38 # Clean all object files...
39 #
40
41 clean:
42 $(RM) $(OBJS) $(TARGETS)
43
44
45 #
46 # Install all targets...
47 #
48
49 install: all install-data install-headers install-libs install-exec
50
51
52 #
53 # Install data files...
54 #
55
56 install-data:
57 $(INSTALL_DIR) -m 775 $(CACHEDIR)/rss
58 -chgrp $(CUPS_GROUP) $(CACHEDIR)/rss
59 if test "x$(SYMROOT)" != "x"; then \
60 $(INSTALL_DIR) $(SYMROOT); \
61 cp mailto rss $(SYMROOT); \
62 fi
63
64
65 #
66 # Install programs...
67 #
68
69 install-exec:
70 $(INSTALL_DIR) -m 755 $(SERVERBIN)/notifier
71 $(INSTALL_BIN) mailto $(SERVERBIN)/notifier
72 $(INSTALL_BIN) rss $(SERVERBIN)/notifier
73
74
75 #
76 # Install headers...
77 #
78
79 install-headers:
80
81
82 #
83 # Install libraries...
84 #
85
86 install-libs:
87
88
89 #
90 # Uninstall all targets...
91 #
92
93 uninstall:
94 for file in $(TARGETS); do \
95 $(RM) $(SERVERBIN)/notifier/$$file; \
96 done
97 -$(RMDIR) $(SERVERBIN)/notifier
98 -$(RMDIR) $(SERVERBIN)
99 -$(RMDIR) $(CACHEDIR)/rss
100
101
102 #
103 # Update dependencies (without system header dependencies...)
104 #
105
106 depend:
107 makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
108
109
110 #
111 # mailto
112 #
113
114 mailto: mailto.o ../cups/$(LIBCUPS)
115 echo Linking $@...
116 $(CC) $(LDFLAGS) -o mailto mailto.o $(LIBS)
117
118
119 #
120 # rss
121 #
122
123 rss: rss.o ../cups/$(LIBCUPS)
124 echo Linking $@...
125 $(CC) $(LDFLAGS) -o rss rss.o $(LIBS)
126
127
128 #
129 # testnotify
130 #
131
132 testnotify: testnotify.o ../cups/$(LIBCUPS)
133 echo Linking $@...
134 $(CC) $(LDFLAGS) -o testnotify testnotify.o $(LIBS)
135
136
137 $(OBJS): ../Makedefs
138
139 include Dependencies
140
141
142 #
143 # End of "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $".
144 #