]> git.ipfire.org Git - thirdparty/cups.git/blob - Makefile
Import CUPS 1.4svn-r7226.
[thirdparty/cups.git] / Makefile
1 #
2 # "$Id: Makefile 6897 2007-08-30 06:11:59Z mike $"
3 #
4 # Top-level 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 # Directories to make...
20 #
21
22 DIRS = cups backend berkeley cgi-bin filter locale man monitor \
23 notifier scheduler systemv test \
24 $(PHPDIR) \
25 conf data doc $(FONTS) ppd templates
26
27
28 #
29 # Make all targets...
30 #
31
32 all:
33 chmod +x cups-config
34 for dir in $(DIRS); do\
35 echo Making all in $$dir... ;\
36 (cd $$dir ; $(MAKE) $(MFLAGS)) || exit 1;\
37 done
38
39
40 #
41 # Remove object and target files...
42 #
43
44 clean:
45 for dir in $(DIRS); do\
46 echo Cleaning in $$dir... ;\
47 (cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
48 done
49
50
51 #
52 # Remove all non-distribution files...
53 #
54
55 distclean: clean
56 $(RM) Makedefs config.h config.log config.status
57 $(RM) cups-config
58 $(RM) conf/cupsd.conf conf/mime.convs conf/pam.std conf/snmp.conf
59 $(RM) doc/help/ref-cupsd-conf.html doc/help/standard.html doc/index.html
60 $(RM) init/cups.sh init/cups-lpd init/org.cups.cups-lpd.plist
61 $(RM) man/client.conf.man
62 $(RM) man/cups-deviced.man man/cups-driverd.man
63 $(RM) man/cups-lpd.man man/cupsaddsmb.man man/cupsd.man
64 $(RM) man/cupsd.conf.man man/lpoptions.man
65 $(RM) packaging/cups.list
66 $(RM) templates/header.tmpl
67 -$(RM) doc/*/index.html
68 -$(RM) templates/*/header.tmpl
69 -$(RM) -r autom4te*.cache
70
71
72 #
73 # Make dependencies
74 #
75
76 depend:
77 for dir in $(DIRS); do\
78 echo Making dependencies in $$dir... ;\
79 (cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\
80 done
81
82
83 #
84 # Generate a ctags file...
85 #
86
87 ctags:
88 ctags -R .
89
90
91 #
92 # Install object and target files...
93 #
94
95 install: installhdrs
96 for dir in $(DIRS); do\
97 echo Installing in $$dir... ;\
98 (cd $$dir; $(MAKE) $(MFLAGS) install) || exit 1;\
99 done
100 echo Installing cups-config script...
101 $(INSTALL_DIR) -m 755 $(BINDIR)
102 $(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config
103 if test "x$(INITDIR)" != x; then \
104 echo Installing init scripts...; \
105 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/init.d; \
106 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/init.d/cups; \
107 for level in $(RCLEVELS); do \
108 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc$${level}.d; \
109 $(LN) ../init.d/cups $(BUILDROOT)$(INITDIR)/rc$${level}.d/S$(RCSTART)cups; \
110 if test `uname` = HP-UX; then \
111 level=`expr $$level - 1`; \
112 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc$${level}.d; \
113 fi; \
114 $(LN) ../init.d/cups $(BUILDROOT)$(INITDIR)/rc$${level}.d/K$(RCSTOP)cups; \
115 done; \
116 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc0.d; \
117 $(LN) ../init.d/cups $(BUILDROOT)$(INITDIR)/rc0.d/K$(RCSTOP)cups; \
118 fi
119 if test "x$(INITDIR)" = x -a "x$(INITDDIR)" != x; then \
120 $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR); \
121 if test "$(INITDDIR)" = "/System/Library/LaunchDaemons"; then \
122 echo Installing LaunchDaemons configuration files...; \
123 $(INSTALL_DATA) init/org.cups.cupsd.plist $(BUILDROOT)$(DEFAULT_LAUNCHD_CONF); \
124 $(INSTALL_DATA) init/org.cups.cups-lpd.plist $(BUILDROOT)/System/Library/LaunchDaemons; \
125 case `uname -r` in \
126 8.*) \
127 $(INSTALL_DIR) $(BUILDROOT)/System/Library/StartupItems/PrintingServices; \
128 $(INSTALL_SCRIPT) init/PrintingServices.launchd $(BUILDROOT)/System/Library/StartupItems/PrintingServices/PrintingServices; \
129 $(INSTALL_DATA) init/StartupParameters.plist $(BUILDROOT)/System/Library/StartupItems/PrintingServices/StartupParameters.plist; \
130 $(INSTALL_DIR) $(BUILDROOT)/System/Library/StartupItems/PrintingServices/Resources/English.lproj; \
131 $(INSTALL_DATA) init/Localizable.strings $(BUILDROOT)/System/Library/StartupItems/PrintingServices/Resources/English.lproj/Localizable.strings; \
132 ;; \
133 esac \
134 else \
135 echo Installing RC script...; \
136 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDDIR)/cups; \
137 fi \
138 fi
139 if test "x$(DBUSDIR)" != x; then \
140 echo Installing cups.conf in $(DBUSDIR)...;\
141 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(DBUSDIR)/system.d; \
142 $(INSTALL_DATA) packaging/cups-dbus.conf $(BUILDROOT)$(DBUSDIR)/system.d/cups.conf; \
143 fi
144 if test "x$(XINETD)" != x; then \
145 echo Installing xinetd configuration file for cups-lpd...; \
146 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(XINETD); \
147 $(INSTALL_DATA) init/cups-lpd $(BUILDROOT)$(XINETD)/cups-lpd; \
148 fi
149 if test "x$(MENUDIR)" != x; then \
150 echo Installing desktop menu...; \
151 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(MENUDIR); \
152 $(INSTALL_DATA) desktop/cups.desktop $(BUILDROOT)$(MENUDIR); \
153 fi
154 if test "x$(ICONDIR)" != x; then \
155 echo Installing desktop icons...; \
156 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/16x16/apps; \
157 $(INSTALL_DATA) desktop/cups-16.png $(BUILDROOT)$(ICONDIR)/hicolor/16x16/apps/cups.png; \
158 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/32x32/apps; \
159 $(INSTALL_DATA) desktop/cups-32.png $(BUILDROOT)$(ICONDIR)/hicolor/32x32/apps/cups.png; \
160 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/64x64/apps; \
161 $(INSTALL_DATA) desktop/cups-64.png $(BUILDROOT)$(ICONDIR)/hicolor/64x64/apps/cups.png; \
162 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/128x128/apps; \
163 $(INSTALL_DATA) desktop/cups-128.png $(BUILDROOT)$(ICONDIR)/hicolor/128x128/apps/cups.png; \
164 fi
165
166
167 #
168 # Install source and header files...
169 #
170
171 installsrc:
172 gnutar --dereference --exclude=.svn -cf - . | gnutar -C $(SRCROOT) -xf -
173
174 installhdrs:
175 (cd cups ; $(MAKE) $(MFLAGS) installhdrs) || exit 1;\
176 (cd filter ; $(MAKE) $(MFLAGS) installhdrs) || exit 1;
177
178
179 #
180 # Uninstall object and target files...
181 #
182
183 uninstall:
184 for dir in $(DIRS); do\
185 echo Uninstalling in $$dir... ;\
186 (cd $$dir; $(MAKE) $(MFLAGS) uninstall) || exit 1;\
187 done
188 echo Uninstalling cups-config script...
189 $(RM) $(BINDIR)/cups-config
190 -$(RMDIR) $(BINDIR)
191 echo Uninstalling startup script...
192 if test "x$(INITDIR)" != x; then \
193 $(RM) $(BUILDROOT)$(INITDIR)/init.d/cups; \
194 $(RMDIR) $(BUILDROOT)$(INITDIR)/init.d; \
195 $(RM) $(BUILDROOT)$(INITDIR)/rc0.d/K00cups; \
196 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc0.d; \
197 $(RM) $(BUILDROOT)$(INITDIR)/rc2.d/S99cups; \
198 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc2.d; \
199 $(RM) $(BUILDROOT)$(INITDIR)/rc3.d/S99cups; \
200 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc3.d; \
201 $(RM) $(BUILDROOT)$(INITDIR)/rc5.d/S99cups; \
202 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc5.d; \
203 fi
204 if test "x$(INITDIR)" = x -a "x$(INITDDIR)" != x; then \
205 if test "$(INITDDIR)" = "/System/Library/StartupItems/PrintingServices"; then \
206 $(RM) $(BUILDROOT)$(INITDDIR)/PrintingServices; \
207 $(RM) $(BUILDROOT)$(INITDDIR)/StartupParameters.plist; \
208 $(RM) $(BUILDROOT)$(INITDDIR)/Resources/English.lproj/Localizable.strings; \
209 $(RMDIR) $(BUILDROOT)$(INITDDIR)/Resources/English.lproj; \
210 elif test "$(INITDDIR)" = "/System/Library/LaunchDaemons"; then \
211 $(RM) $(BUILDROOT)$(INITDDIR)/org.cups.cupsd.plist; \
212 $(RM) $(BUILDROOT)$(INITDDIR)/org.cups.cups-lpd.plist; \
213 $(RMDIR) $(BUILDROOT)/System/Library/StartupItems/PrintingServices; \
214 else \
215 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDDIR)/cups; \
216 fi \
217 $(RMDIR) $(BUILDROOT)$(INITDDIR); \
218 fi
219 if test "x$(DBUSDIR)" != x; then \
220 echo Uninstalling cups.conf in $(DBUSDIR)...;\
221 $(RM) $(BUILDROOT)$(DBUSDIR)/cups.conf; \
222 $(RMDIR) $(BUILDROOT)$(DBUSDIR); \
223 fi
224 $(RM) $(BUILDROOT)/etc/xinetd.d/cups-lpd
225 $(RM) $(BUILDROOT)/usr/share/applications/cups.desktop
226 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/16x16/apps/cups.png
227 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/32x32/apps/cups.png
228 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/64x64/apps/cups.png
229 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/128x128/apps/cups.png
230
231
232 #
233 # Run the test suite...
234 #
235
236 test: all
237 echo Running CUPS test suite...
238 cd test; ./run-stp-tests.sh
239
240
241 check: all
242 echo Running CUPS test suite with defaults...
243 cd test; ./run-stp-tests.sh 1 0 n
244
245
246 #
247 # Make software distributions using EPM (http://www.easysw.com/epm/)...
248 #
249
250 EPMFLAGS = -v --output-dir dist $(EPMARCH)
251
252 aix bsd deb depot inst pkg setld slackware swinstall tardist:
253 epm $(EPMFLAGS) -f $@ cups packaging/cups.list
254
255 epm:
256 epm $(EPMFLAGS) -s packaging/installer.gif cups packaging/cups.list
257
258 osx:
259 epm $(EPMFLAGS) -f osx -s packaging/installer.tif cups packaging/cups.list
260
261 rpm:
262 epm $(EPMFLAGS) -f rpm -s packaging/installer.gif cups packaging/cups.list
263
264 .PHONEY: dist
265 dist: all
266 $(RM) -r dist
267 $(MAKE) $(MFLAGS) epm
268 case `uname` in \
269 *BSD*) $(MAKE) $(MFLAGS) bsd;; \
270 Darwin*) $(MAKE) $(MFLAGS) osx;; \
271 IRIX*) $(MAKE) $(MFLAGS) tardist;; \
272 Linux*) $(MAKE) $(MFLAGS) rpm;; \
273 SunOS*) $(MAKE) $(MFLAGS) pkg;; \
274 esac
275
276
277 #
278 # End of "$Id: Makefile 6897 2007-08-30 06:11:59Z mike $".
279 #