]> git.ipfire.org Git - thirdparty/cups.git/blame - Makefile
Merge changes from CUPS 1.4svn-r7791.
[thirdparty/cups.git] / Makefile
CommitLineData
ef416fc2 1#
75bd9771 2# "$Id: Makefile 7613 2008-05-22 23:27:52Z mike $"
ef416fc2 3#
4# Top-level Makefile for the Common UNIX Printing System (CUPS).
5#
91c84a35 6# Copyright 2007-2008 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#
19# Directories to make...
20#
21
ac884b6a
MS
22DIRS = cups filter backend berkeley cgi-bin driver locale man monitor \
23 notifier ppdc scheduler systemv test \
757d2cad 24 $(PHPDIR) \
634763e8 25 conf data doc $(FONTS) templates
bd7854cb 26
ef416fc2 27
28#
29# Make all targets...
30#
31
32all:
33 chmod +x cups-config
c9fc04c6 34 echo Using ARCHFLAGS="$(ARCHFLAGS)"
ac884b6a
MS
35 echo Using ALL_CFLAGS="$(ALL_CFLAGS)"
36 echo Using ALL_CXXFLAGS="$(ALL_CXXFLAGS)"
c9fc04c6 37 echo Using DSOFLAGS="$(DSOFLAGS)"
ac884b6a
MS
38 echo Using LDFLAGS="$(LDFLAGS)"
39 echo Using LIBS="$(LIBS)"
ef416fc2 40 for dir in $(DIRS); do\
41 echo Making all in $$dir... ;\
c9fc04c6
MS
42 (cd $$dir ; $(MAKE) $(MFLAGS) all) || exit 1;\
43 done
44
45
46#
47# Make library targets...
48#
49
50libs:
51 echo Using ARCHFLAGS="$(ARCHFLAGS)"
52 echo Using ALL_CFLAGS="$(ALL_CFLAGS)"
53 echo Using ALL_CXXFLAGS="$(ALL_CXXFLAGS)"
54 echo Using DSOFLAGS="$(DSOFLAGS)"
55 echo Using LDFLAGS="$(LDFLAGS)"
56 echo Using LIBS="$(LIBS)"
57 for dir in $(DIRS); do\
8922323b 58 echo Making libraries in $$dir... ;\
c9fc04c6 59 (cd $$dir ; $(MAKE) $(MFLAGS) libs) || exit 1;\
ef416fc2 60 done
61
bd7854cb 62
ef416fc2 63#
64# Remove object and target files...
65#
66
67clean:
68 for dir in $(DIRS); do\
69 echo Cleaning in $$dir... ;\
70 (cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
71 done
72
bd7854cb 73
a9252913 74#
75# Remove all non-distribution files...
76#
77
78distclean: clean
79 $(RM) Makedefs config.h config.log config.status
0a682745
MS
80 $(RM) cups-config
81 $(RM) conf/cupsd.conf conf/mime.convs conf/pam.std conf/snmp.conf
82 $(RM) doc/help/ref-cupsd-conf.html doc/help/standard.html doc/index.html
83 $(RM) init/cups.sh init/cups-lpd init/org.cups.cups-lpd.plist
b94498cf 84 $(RM) man/client.conf.man
a9252913 85 $(RM) man/cups-deviced.man man/cups-driverd.man
86 $(RM) man/cups-lpd.man man/cupsaddsmb.man man/cupsd.man
87 $(RM) man/cupsd.conf.man man/lpoptions.man
f7deaa1a 88 $(RM) packaging/cups.list
db1f069b 89 $(RM) templates/header.tmpl
a9252913 90 -$(RM) doc/*/index.html
a9252913 91 -$(RM) templates/*/header.tmpl
92 -$(RM) -r autom4te*.cache
93
94
ef416fc2 95#
96# Make dependencies
97#
98
99depend:
100 for dir in $(DIRS); do\
101 echo Making dependencies in $$dir... ;\
102 (cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\
103 done
104
105
1f0275e3
MS
106#
107# Run the clang.llvm.org static code analysis tool on the C sources.
108#
109
110.PHONY: clang
111clang:
112 if test ! -d clang; then \
113 mkdir clang; \
114 else \
115 rm -rf clang/*; \
116 fi
5d6412a9
MS
117 $(MAKE) $(MFLAGS) CC="scan-build -o ../clang $(CC)" \
118 CXX="scan-build -o ../clang $(CXX)" clean all
119 test `ls -1 clang | wc -l` != 0 || exit 1
1f0275e3
MS
120
121
b94498cf 122#
123# Generate a ctags file...
124#
125
126ctags:
127 ctags -R .
128
129
ef416fc2 130#
50fe7201 131# Install everything...
ef416fc2 132#
133
50fe7201
MS
134install: install-data install-headers install-libs install-exec
135
136
137#
138# Install data files...
139#
140
141install-data:
ef416fc2 142 for dir in $(DIRS); do\
50fe7201
MS
143 echo Installing data files in $$dir... ;\
144 (cd $$dir; $(MAKE) $(MFLAGS) install-data) || exit 1;\
ef416fc2 145 done
ef416fc2 146 echo Installing cups-config script...
757d2cad 147 $(INSTALL_DIR) -m 755 $(BINDIR)
ef416fc2 148 $(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config
e1d6a774 149 if test "x$(INITDIR)" != x; then \
f301802f 150 echo Installing init scripts...; \
757d2cad 151 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/init.d; \
fa73b229 152 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/init.d/cups; \
f7deaa1a 153 for level in $(RCLEVELS); do \
154 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc$${level}.d; \
155 $(LN) ../init.d/cups $(BUILDROOT)$(INITDIR)/rc$${level}.d/S$(RCSTART)cups; \
156 if test `uname` = HP-UX; then \
157 level=`expr $$level - 1`; \
158 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc$${level}.d; \
159 fi; \
160 $(LN) ../init.d/cups $(BUILDROOT)$(INITDIR)/rc$${level}.d/K$(RCSTOP)cups; \
161 done; \
757d2cad 162 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc0.d; \
f7deaa1a 163 $(LN) ../init.d/cups $(BUILDROOT)$(INITDIR)/rc0.d/K$(RCSTOP)cups; \
ef416fc2 164 fi
e1d6a774 165 if test "x$(INITDIR)" = x -a "x$(INITDDIR)" != x; then \
ef416fc2 166 $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR); \
a41f09e2 167 if test "$(INITDDIR)" = "/System/Library/LaunchDaemons"; then \
d09495fa 168 echo Installing LaunchDaemons configuration files...; \
e00b005a 169 $(INSTALL_DATA) init/org.cups.cupsd.plist $(BUILDROOT)$(DEFAULT_LAUNCHD_CONF); \
d09495fa 170 $(INSTALL_DATA) init/org.cups.cups-lpd.plist $(BUILDROOT)/System/Library/LaunchDaemons; \
3d8365b8 171 case `uname -r` in \
172 8.*) \
173 $(INSTALL_DIR) $(BUILDROOT)/System/Library/StartupItems/PrintingServices; \
174 $(INSTALL_SCRIPT) init/PrintingServices.launchd $(BUILDROOT)/System/Library/StartupItems/PrintingServices/PrintingServices; \
175 $(INSTALL_DATA) init/StartupParameters.plist $(BUILDROOT)/System/Library/StartupItems/PrintingServices/StartupParameters.plist; \
176 $(INSTALL_DIR) $(BUILDROOT)/System/Library/StartupItems/PrintingServices/Resources/English.lproj; \
177 $(INSTALL_DATA) init/Localizable.strings $(BUILDROOT)/System/Library/StartupItems/PrintingServices/Resources/English.lproj/Localizable.strings; \
178 ;; \
179 esac \
ef416fc2 180 else \
f301802f 181 echo Installing RC script...; \
fa73b229 182 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDDIR)/cups; \
ef416fc2 183 fi \
184 fi
e1d6a774 185 if test "x$(DBUSDIR)" != x; then \
b423cd4c 186 echo Installing cups.conf in $(DBUSDIR)...;\
f7deaa1a 187 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(DBUSDIR)/system.d; \
188 $(INSTALL_DATA) packaging/cups-dbus.conf $(BUILDROOT)$(DBUSDIR)/system.d/cups.conf; \
bd7854cb 189 fi
e1d6a774 190 if test "x$(XINETD)" != x; then \
191 echo Installing xinetd configuration file for cups-lpd...; \
192 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(XINETD); \
193 $(INSTALL_DATA) init/cups-lpd $(BUILDROOT)$(XINETD)/cups-lpd; \
194 fi
f7deaa1a 195 if test "x$(MENUDIR)" != x; then \
196 echo Installing desktop menu...; \
197 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(MENUDIR); \
198 $(INSTALL_DATA) desktop/cups.desktop $(BUILDROOT)$(MENUDIR); \
199 fi
200 if test "x$(ICONDIR)" != x; then \
e1d6a774 201 echo Installing desktop icons...; \
f7deaa1a 202 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/16x16/apps; \
203 $(INSTALL_DATA) desktop/cups-16.png $(BUILDROOT)$(ICONDIR)/hicolor/16x16/apps/cups.png; \
204 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/32x32/apps; \
205 $(INSTALL_DATA) desktop/cups-32.png $(BUILDROOT)$(ICONDIR)/hicolor/32x32/apps/cups.png; \
206 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/64x64/apps; \
207 $(INSTALL_DATA) desktop/cups-64.png $(BUILDROOT)$(ICONDIR)/hicolor/64x64/apps/cups.png; \
208 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/128x128/apps; \
209 $(INSTALL_DATA) desktop/cups-128.png $(BUILDROOT)$(ICONDIR)/hicolor/128x128/apps/cups.png; \
e1d6a774 210 fi
ef416fc2 211
50fe7201
MS
212#
213# Install header files...
214#
215
216install-headers:
217 for dir in $(DIRS); do\
218 echo Installing header files in $$dir... ;\
219 (cd $$dir; $(MAKE) $(MFLAGS) install-headers) || exit 1;\
220 done
221
ef416fc2 222
223#
50fe7201 224# Install programs...
ef416fc2 225#
226
c9fc04c6 227install-exec: all
50fe7201
MS
228 for dir in $(DIRS); do\
229 echo Installing programs in $$dir... ;\
c9fc04c6 230 (cd $$dir; $(MAKE) $(MFLAGS) install-exec) || exit 1;\
50fe7201 231 done
ef416fc2 232
50fe7201
MS
233
234#
235# Install libraries...
236#
237
c9fc04c6 238install-libs: libs
50fe7201
MS
239 for dir in $(DIRS); do\
240 echo Installing libraries in $$dir... ;\
c9fc04c6 241 (cd $$dir; $(MAKE) $(MFLAGS) install-libs) || exit 1;\
50fe7201 242 done
ef416fc2 243
244
757d2cad 245#
246# Uninstall object and target files...
247#
248
249uninstall:
250 for dir in $(DIRS); do\
251 echo Uninstalling in $$dir... ;\
252 (cd $$dir; $(MAKE) $(MFLAGS) uninstall) || exit 1;\
253 done
254 echo Uninstalling cups-config script...
255 $(RM) $(BINDIR)/cups-config
256 -$(RMDIR) $(BINDIR)
257 echo Uninstalling startup script...
e1d6a774 258 if test "x$(INITDIR)" != x; then \
757d2cad 259 $(RM) $(BUILDROOT)$(INITDIR)/init.d/cups; \
260 $(RMDIR) $(BUILDROOT)$(INITDIR)/init.d; \
261 $(RM) $(BUILDROOT)$(INITDIR)/rc0.d/K00cups; \
262 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc0.d; \
263 $(RM) $(BUILDROOT)$(INITDIR)/rc2.d/S99cups; \
264 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc2.d; \
265 $(RM) $(BUILDROOT)$(INITDIR)/rc3.d/S99cups; \
266 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc3.d; \
267 $(RM) $(BUILDROOT)$(INITDIR)/rc5.d/S99cups; \
268 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc5.d; \
269 fi
e1d6a774 270 if test "x$(INITDIR)" = x -a "x$(INITDDIR)" != x; then \
757d2cad 271 if test "$(INITDDIR)" = "/System/Library/StartupItems/PrintingServices"; then \
272 $(RM) $(BUILDROOT)$(INITDDIR)/PrintingServices; \
273 $(RM) $(BUILDROOT)$(INITDDIR)/StartupParameters.plist; \
274 $(RM) $(BUILDROOT)$(INITDDIR)/Resources/English.lproj/Localizable.strings; \
275 $(RMDIR) $(BUILDROOT)$(INITDDIR)/Resources/English.lproj; \
276 elif test "$(INITDDIR)" = "/System/Library/LaunchDaemons"; then \
3d8365b8 277 $(RM) $(BUILDROOT)$(INITDDIR)/org.cups.cupsd.plist; \
278 $(RM) $(BUILDROOT)$(INITDDIR)/org.cups.cups-lpd.plist; \
279 $(RMDIR) $(BUILDROOT)/System/Library/StartupItems/PrintingServices; \
757d2cad 280 else \
281 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDDIR)/cups; \
282 fi \
283 $(RMDIR) $(BUILDROOT)$(INITDDIR); \
284 fi
e1d6a774 285 if test "x$(DBUSDIR)" != x; then \
757d2cad 286 echo Uninstalling cups.conf in $(DBUSDIR)...;\
287 $(RM) $(BUILDROOT)$(DBUSDIR)/cups.conf; \
288 $(RMDIR) $(BUILDROOT)$(DBUSDIR); \
289 fi
e1d6a774 290 $(RM) $(BUILDROOT)/etc/xinetd.d/cups-lpd
291 $(RM) $(BUILDROOT)/usr/share/applications/cups.desktop
292 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/16x16/apps/cups.png
293 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/32x32/apps/cups.png
294 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/64x64/apps/cups.png
295 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/128x128/apps/cups.png
757d2cad 296
297
ef416fc2 298#
299# Run the test suite...
300#
301
d09495fa 302test: all
ef416fc2 303 echo Running CUPS test suite...
304 cd test; ./run-stp-tests.sh
305
306
d09495fa 307check: all
308 echo Running CUPS test suite with defaults...
309 cd test; ./run-stp-tests.sh 1 0 n
310
311
ef416fc2 312#
4744bd90 313# Make software distributions using EPM (http://www.easysw.com/epm/)...
ef416fc2 314#
315
d09495fa 316EPMFLAGS = -v --output-dir dist $(EPMARCH)
ef416fc2 317
b86bc4cf 318aix bsd deb depot inst pkg setld slackware swinstall tardist:
4744bd90 319 epm $(EPMFLAGS) -f $@ cups packaging/cups.list
ef416fc2 320
321epm:
d09495fa 322 epm $(EPMFLAGS) -s packaging/installer.gif cups packaging/cups.list
323
324osx:
325 epm $(EPMFLAGS) -f osx -s packaging/installer.tif cups packaging/cups.list
326
b86bc4cf 327rpm:
328 epm $(EPMFLAGS) -f rpm -s packaging/installer.gif cups packaging/cups.list
329
d09495fa 330.PHONEY: dist
331dist: all
332 $(RM) -r dist
333 $(MAKE) $(MFLAGS) epm
334 case `uname` in \
335 *BSD*) $(MAKE) $(MFLAGS) bsd;; \
336 Darwin*) $(MAKE) $(MFLAGS) osx;; \
337 IRIX*) $(MAKE) $(MFLAGS) tardist;; \
338 Linux*) $(MAKE) $(MFLAGS) rpm;; \
339 SunOS*) $(MAKE) $(MFLAGS) pkg;; \
340 esac
ef416fc2 341
bd7854cb 342
ef416fc2 343#
75bd9771 344# End of "$Id: Makefile 7613 2008-05-22 23:27:52Z mike $".
ef416fc2 345#