]> git.ipfire.org Git - thirdparty/cups.git/blame - Makefile
Merge changes from CUPS 1.5svn-r9641
[thirdparty/cups.git] / Makefile
CommitLineData
ef416fc2 1#
31db8ded 2# "$Id: Makefile 9391 2010-11-30 21:53:04Z mike $"
ef416fc2 3#
f8b3a85b 4# Top-level Makefile for CUPS.
ef416fc2 5#
f8b3a85b 6# Copyright 2007-2010 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
49d87452 18
ef416fc2 19#
20# Directories to make...
21#
22
6d2f911b 23DIRS = cups test $(BUILDDIRS) $(PHPDIR) $(FONTS)
bd7854cb 24
ef416fc2 25
26#
27# Make all targets...
28#
29
30all:
31 chmod +x cups-config
c9fc04c6 32 echo Using ARCHFLAGS="$(ARCHFLAGS)"
ac884b6a
MS
33 echo Using ALL_CFLAGS="$(ALL_CFLAGS)"
34 echo Using ALL_CXXFLAGS="$(ALL_CXXFLAGS)"
5f64df29
MS
35 echo Using CC="$(CC)"
36 echo Using CXX="$(CC)"
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... ;\
1f6f3dbc 42 (cd $$dir ; $(MAKE) $(MFLAGS) all $(UNITTESTS)) || exit 1;\
c9fc04c6
MS
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)"
5f64df29
MS
54 echo Using CC="$(CC)"
55 echo Using CXX="$(CC)"
c9fc04c6
MS
56 echo Using DSOFLAGS="$(DSOFLAGS)"
57 echo Using LDFLAGS="$(LDFLAGS)"
58 echo Using LIBS="$(LIBS)"
59 for dir in $(DIRS); do\
8922323b 60 echo Making libraries in $$dir... ;\
c9fc04c6 61 (cd $$dir ; $(MAKE) $(MFLAGS) libs) || exit 1;\
ef416fc2 62 done
63
bd7854cb 64
5f64df29
MS
65#
66# Make unit test targets...
67#
68
69unittests:
70 echo Using ARCHFLAGS="$(ARCHFLAGS)"
71 echo Using ALL_CFLAGS="$(ALL_CFLAGS)"
72 echo Using ALL_CXXFLAGS="$(ALL_CXXFLAGS)"
73 echo Using CC="$(CC)"
74 echo Using CXX="$(CC)"
75 echo Using DSOFLAGS="$(DSOFLAGS)"
76 echo Using LDFLAGS="$(LDFLAGS)"
77 echo Using LIBS="$(LIBS)"
78 for dir in $(DIRS); do\
79 echo Making all in $$dir... ;\
80 (cd $$dir ; $(MAKE) $(MFLAGS) unittests) || exit 1;\
81 done
82
83
ef416fc2 84#
85# Remove object and target files...
86#
87
88clean:
89 for dir in $(DIRS); do\
90 echo Cleaning in $$dir... ;\
91 (cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
92 done
93
bd7854cb 94
a9252913 95#
96# Remove all non-distribution files...
97#
98
99distclean: clean
100 $(RM) Makedefs config.h config.log config.status
0a682745
MS
101 $(RM) cups-config
102 $(RM) conf/cupsd.conf conf/mime.convs conf/pam.std conf/snmp.conf
103 $(RM) doc/help/ref-cupsd-conf.html doc/help/standard.html doc/index.html
b94498cf 104 $(RM) man/client.conf.man
a9252913 105 $(RM) man/cups-deviced.man man/cups-driverd.man
106 $(RM) man/cups-lpd.man man/cupsaddsmb.man man/cupsd.man
b19ccc9e 107 $(RM) man/cupsd.conf.man man/drv.man man/lpoptions.man
f7deaa1a 108 $(RM) packaging/cups.list
58dc1933 109 $(RM) packaging/cups-desc.plist packaging/cups-info.plist
db1f069b 110 $(RM) templates/header.tmpl
c5571a1d 111 $(RM) desktop/cups.desktop
71e16022 112 $(RM) scheduler/cups.sh scheduler/cups-lpd.xinetd
4d301e69 113 $(RM) scheduler/org.cups.cups-lpd.plist scheduler/cups.xml
a9252913 114 -$(RM) doc/*/index.html
a9252913 115 -$(RM) templates/*/header.tmpl
58dc1933 116 -$(RM) -r autom4te*.cache clang cups/charmaps cups/locale driver/test
a9252913 117
118
ef416fc2 119#
120# Make dependencies
121#
122
123depend:
124 for dir in $(DIRS); do\
125 echo Making dependencies in $$dir... ;\
126 (cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\
127 done
128
129
1f0275e3
MS
130#
131# Run the clang.llvm.org static code analysis tool on the C sources.
41681883 132# (at least checker-231 is required for scan-build to work this way)
1f0275e3
MS
133#
134
f8b3a85b 135.PHONY: clang clang-changes
1f0275e3 136clang:
c5571a1d 137 $(RM) -r clang
41681883 138 scan-build -V -k -o `pwd`/clang $(MAKE) $(MFLAGS) clean all
f8b3a85b
MS
139clang-changes:
140 scan-build -V -k -o `pwd`/clang $(MAKE) $(MFLAGS) all
1f0275e3
MS
141
142
b94498cf 143#
144# Generate a ctags file...
145#
146
147ctags:
148 ctags -R .
149
150
ef416fc2 151#
50fe7201 152# Install everything...
ef416fc2 153#
154
50fe7201
MS
155install: install-data install-headers install-libs install-exec
156
157
158#
159# Install data files...
160#
161
162install-data:
229681c1
MS
163 echo Making all in cups...
164 (cd cups; $(MAKE) $(MFLAGS) all)
ef416fc2 165 for dir in $(DIRS); do\
50fe7201
MS
166 echo Installing data files in $$dir... ;\
167 (cd $$dir; $(MAKE) $(MFLAGS) install-data) || exit 1;\
ef416fc2 168 done
ef416fc2 169 echo Installing cups-config script...
757d2cad 170 $(INSTALL_DIR) -m 755 $(BINDIR)
ef416fc2 171 $(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config
4d301e69 172
ef416fc2 173
50fe7201
MS
174#
175# Install header files...
176#
177
178install-headers:
179 for dir in $(DIRS); do\
180 echo Installing header files in $$dir... ;\
181 (cd $$dir; $(MAKE) $(MFLAGS) install-headers) || exit 1;\
182 done
71e16022
MS
183 if test "x$(privateinclude)" != x; then \
184 echo Installing config.h into $(PRIVATEINCLUDE)...; \
5180a04c
MS
185 $(INSTALL_DIR) -m 755 $(PRIVATEINCLUDE); \
186 $(INSTALL_DATA) config.h $(PRIVATEINCLUDE)/config.h; \
71e16022 187 fi
50fe7201 188
ef416fc2 189
190#
50fe7201 191# Install programs...
ef416fc2 192#
193
c9fc04c6 194install-exec: all
50fe7201
MS
195 for dir in $(DIRS); do\
196 echo Installing programs in $$dir... ;\
c9fc04c6 197 (cd $$dir; $(MAKE) $(MFLAGS) install-exec) || exit 1;\
50fe7201 198 done
ef416fc2 199
50fe7201
MS
200
201#
202# Install libraries...
203#
204
c9fc04c6 205install-libs: libs
50fe7201
MS
206 for dir in $(DIRS); do\
207 echo Installing libraries in $$dir... ;\
c9fc04c6 208 (cd $$dir; $(MAKE) $(MFLAGS) install-libs) || exit 1;\
50fe7201 209 done
ef416fc2 210
211
757d2cad 212#
213# Uninstall object and target files...
214#
215
216uninstall:
217 for dir in $(DIRS); do\
218 echo Uninstalling in $$dir... ;\
219 (cd $$dir; $(MAKE) $(MFLAGS) uninstall) || exit 1;\
220 done
221 echo Uninstalling cups-config script...
222 $(RM) $(BINDIR)/cups-config
223 -$(RMDIR) $(BINDIR)
757d2cad 224
225
ef416fc2 226#
227# Run the test suite...
228#
229
f11a948a 230test: all unittests
ef416fc2 231 echo Running CUPS test suite...
232 cd test; ./run-stp-tests.sh
233
234
f11a948a 235check: all unittests
d09495fa 236 echo Running CUPS test suite with defaults...
237 cd test; ./run-stp-tests.sh 1 0 n
238
239
f11a948a 240#
178cb736 241# Create HTML documentation...
f11a948a
MS
242#
243
244apihelp:
245 for dir in cgi-bin cups filter driver ppdc scheduler; do\
246 echo Generating API help in $$dir... ;\
247 (cd $$dir; $(MAKE) $(MFLAGS) apihelp) || exit 1;\
248 done
249
250framedhelp:
251 for dir in cgi-bin cups filter driver ppdc scheduler; do\
252 echo Generating framed API help in $$dir... ;\
253 (cd $$dir; $(MAKE) $(MFLAGS) framedhelp) || exit 1;\
254 done
255
178cb736
MS
256
257#
258# Create an Xcode docset...
259#
260
f11a948a
MS
261docset: apihelp
262 echo Generating docset directory tree...
263 $(RM) -r org.cups.docset
264 mkdir -p org.cups.docset/Contents/Resources/Documentation/help
265 mkdir -p org.cups.docset/Contents/Resources/Documentation/images
178cb736 266 cd man; $(MAKE) $(MFLAGS) html
f11a948a
MS
267 cd doc; $(MAKE) $(MFLAGS) docset
268 cd cgi-bin; $(MAKE) $(MFLAGS) makedocset
269 cgi-bin/makedocset org.cups.docset \
270 `svnversion . | sed -e '1,$$s/[a-zA-Z]//g'` \
271 doc/help/api-*.tokens
272 $(RM) doc/help/api-*.tokens
273 echo Indexing docset...
274 /Developer/usr/bin/docsetutil index org.cups.docset
275 echo Generating docset archive and feed...
85b5d1df 276 $(RM) org.cups.docset.atom
f11a948a
MS
277 /Developer/usr/bin/docsetutil package --output org.cups.docset.xar \
278 --atom org.cups.docset.atom \
279 --download-url http://www.cups.org/org.cups.docset.xar \
280 org.cups.docset
281
282
84315f46
MS
283#
284# Lines of code computation...
285#
286
287sloc:
288 for dir in cups cupslite scheduler; do \
289 (cd $$dir; $(MAKE) $(MFLAGS) sloc) || exit 1;\
290 done
291
292
ef416fc2 293#
f8b3a85b 294# Make software distributions using EPM (http://www.epmhome.org/)...
ef416fc2 295#
296
d09495fa 297EPMFLAGS = -v --output-dir dist $(EPMARCH)
ef416fc2 298
b86bc4cf 299aix bsd deb depot inst pkg setld slackware swinstall tardist:
4744bd90 300 epm $(EPMFLAGS) -f $@ cups packaging/cups.list
ef416fc2 301
302epm:
d09495fa 303 epm $(EPMFLAGS) -s packaging/installer.gif cups packaging/cups.list
304
305osx:
306 epm $(EPMFLAGS) -f osx -s packaging/installer.tif cups packaging/cups.list
307
b86bc4cf 308rpm:
309 epm $(EPMFLAGS) -f rpm -s packaging/installer.gif cups packaging/cups.list
310
d09495fa 311.PHONEY: dist
312dist: all
313 $(RM) -r dist
314 $(MAKE) $(MFLAGS) epm
315 case `uname` in \
316 *BSD*) $(MAKE) $(MFLAGS) bsd;; \
317 Darwin*) $(MAKE) $(MFLAGS) osx;; \
318 IRIX*) $(MAKE) $(MFLAGS) tardist;; \
97c9a8d7 319 Linux*) test ! -x /usr/bin/rpm || $(MAKE) $(MFLAGS) rpm;; \
d09495fa 320 SunOS*) $(MAKE) $(MFLAGS) pkg;; \
321 esac
ef416fc2 322
bd7854cb 323
ef416fc2 324#
31db8ded
MS
325# Don't run top-level build targets in parallel...
326#
327
328.NOTPARALLEL:
329
330
331#
332# End of "$Id: Makefile 9391 2010-11-30 21:53:04Z mike $".
ef416fc2 333#