4 # Top-level Makefile for CUPS.
6 # Copyright 2007-2013 by Apple Inc.
7 # Copyright 1997-2007 by Easy Software Products, all rights reserved.
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/".
20 # Directories to make...
23 DIRS
= cups
test $(BUILDDIRS
)
32 echo Using ARCHFLAGS
="$(ARCHFLAGS)"
33 echo Using ALL_CFLAGS
="$(ALL_CFLAGS)"
34 echo Using ALL_CXXFLAGS
="$(ALL_CXXFLAGS)"
36 echo Using CXX
="$(CC)"
37 echo Using DSOFLAGS
="$(DSOFLAGS)"
38 echo Using LDFLAGS
="$(LDFLAGS)"
39 echo Using LIBS
="$(LIBS)"
40 for
dir in
$(DIRS
); do\
41 echo Making
all in
$$dir...
;\
42 (cd
$$dir ; $(MAKE
) $(MFLAGS
) all $(UNITTESTS
)) || exit
1;\
47 # Make library targets...
51 echo Using ARCHFLAGS
="$(ARCHFLAGS)"
52 echo Using ALL_CFLAGS
="$(ALL_CFLAGS)"
53 echo Using ALL_CXXFLAGS
="$(ALL_CXXFLAGS)"
55 echo Using CXX
="$(CC)"
56 echo Using DSOFLAGS
="$(DSOFLAGS)"
57 echo Using LDFLAGS
="$(LDFLAGS)"
58 echo Using LIBS
="$(LIBS)"
59 for
dir in
$(DIRS
); do\
60 echo Making libraries in
$$dir...
;\
61 (cd
$$dir ; $(MAKE
) $(MFLAGS
) libs
) || exit
1;\
66 # Make unit test targets...
70 echo Using ARCHFLAGS
="$(ARCHFLAGS)"
71 echo Using ALL_CFLAGS
="$(ALL_CFLAGS)"
72 echo Using ALL_CXXFLAGS
="$(ALL_CXXFLAGS)"
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;\
85 # Remove object and target files...
89 for
dir in
$(DIRS
); do\
90 echo Cleaning in
$$dir...
;\
91 (cd
$$dir; $(MAKE
) $(MFLAGS
) clean) || exit
1;\
96 # Remove all non-distribution files...
100 $(RM
) Makedefs config.h config.log config.status
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
104 $(RM
) man
/client.conf.man
105 $(RM
) man
/cups-deviced.man man
/cups-driverd.man
106 $(RM
) man
/cups-lpd.man man
/cupsaddsmb.man man
/cupsd.man
107 $(RM
) man
/cupsd.conf.man man
/drv.man man
/lpoptions.man
108 $(RM
) packaging
/cups.list
109 $(RM
) packaging
/cups-desc.plist packaging
/cups-info.plist
110 $(RM
) templates
/header.tmpl
111 $(RM
) desktop
/cups.desktop
112 $(RM
) scheduler
/cups.sh scheduler
/cups-lpd.xinetd
113 $(RM
) scheduler
/org.cups.cups-lpd.plist scheduler
/cups.xml
114 -$(RM
) doc
/*/index.html
115 -$(RM
) templates
/*/header.tmpl
116 -$(RM
) -r autom4te
*.cache clang cups
/charmaps cups
/locale driver
/test
124 for
dir in
$(DIRS
); do\
125 echo Making dependencies in
$$dir...
;\
126 (cd
$$dir; $(MAKE
) $(MFLAGS
) depend
) || exit
1;\
131 # Run the Clang static code analysis tool on the sources, available here:
133 # http://clang-analyzer.llvm.org
135 # At least checker-231 is required.
138 .PHONY
: clang clang-changes
141 scan-build
-V
-k
-o
`pwd`/clang
$(MAKE
) $(MFLAGS
) clean all
143 scan-build
-V
-k
-o
`pwd`/clang
$(MAKE
) $(MFLAGS
) all
147 # Run the STACK tool on the sources, available here:
149 # http://css.csail.mit.edu/stack/
151 # Do the following to pass options to configure:
153 # make CONFIGFLAGS="--foo --bar" stack
158 stack-build .
/configure
$(CONFIGFLAGS
)
159 stack-build
$(MAKE
) $(MFLAGS
) clean all
161 $(MAKE
) $(MFLAGS
) distclean
167 # Generate a ctags file...
175 # Install everything...
178 install: install-data install-headers install-libs install-exec
182 # Install data files...
186 echo Making
all in cups...
187 (cd cups
; $(MAKE
) $(MFLAGS
) all)
188 for
dir in
$(DIRS
); do\
189 echo Installing data files in
$$dir...
;\
190 (cd
$$dir; $(MAKE
) $(MFLAGS
) install-data
) || exit
1;\
192 echo Installing cups-config script...
193 $(INSTALL_DIR
) -m
755 $(BINDIR
)
194 $(INSTALL_SCRIPT
) cups-config
$(BINDIR
)/cups-config
198 # Install header files...
202 for
dir in
$(DIRS
); do\
203 echo Installing header files in
$$dir...
;\
204 (cd
$$dir; $(MAKE
) $(MFLAGS
) install-headers
) || exit
1;\
206 if
test "x$(privateinclude)" != x
; then \
207 echo Installing config.h into
$(PRIVATEINCLUDE
)...
; \
208 $(INSTALL_DIR
) -m
755 $(PRIVATEINCLUDE
); \
209 $(INSTALL_DATA
) config.h
$(PRIVATEINCLUDE
)/config.h
; \
214 # Install programs...
218 for
dir in
$(DIRS
); do\
219 echo Installing programs in
$$dir...
;\
220 (cd
$$dir; $(MAKE
) $(MFLAGS
) install-exec
) || exit
1;\
225 # Install libraries...
229 for
dir in
$(DIRS
); do\
230 echo Installing libraries in
$$dir...
;\
231 (cd
$$dir; $(MAKE
) $(MFLAGS
) install-libs
) || exit
1;\
236 # Uninstall object and target files...
240 for
dir in
$(DIRS
); do\
241 echo Uninstalling in
$$dir...
;\
242 (cd
$$dir; $(MAKE
) $(MFLAGS
) uninstall) || exit
1;\
244 echo Uninstalling cups-config script...
245 $(RM
) $(BINDIR
)/cups-config
250 # Run the test suite...
254 echo Running CUPS
test suite...
255 cd
test; .
/run-stp-tests.sh
259 echo Running CUPS
test suite with defaults...
260 cd
test; .
/run-stp-tests.sh
1 0 n n
262 debugcheck
: all unittests
263 echo Running CUPS
test suite with debug printfs...
264 cd
test; .
/run-stp-tests.sh
1 0 n y
268 # Create HTML documentation using Mini-XML's mxmldoc (http://www.msweet.org/)...
272 for
dir in cgi-bin cups
filter ppdc scheduler
; do\
273 echo Generating API help in
$$dir...
;\
274 (cd
$$dir; $(MAKE
) $(MFLAGS
) apihelp
) || exit
1;\
278 for
dir in cgi-bin cups
filter ppdc scheduler
; do\
279 echo Generating framed API help in
$$dir...
;\
280 (cd
$$dir; $(MAKE
) $(MFLAGS
) framedhelp
) || exit
1;\
285 # Create an Xcode docset using Mini-XML's mxmldoc (http://www.msweet.org/)...
289 echo Generating docset directory tree...
290 $(RM
) -r org.cups.docset
291 mkdir
-p org.cups.docset
/Contents
/Resources
/Documentation
/help
292 mkdir
-p org.cups.docset
/Contents
/Resources
/Documentation
/images
293 cd man
; $(MAKE
) $(MFLAGS
) html
294 cd doc
; $(MAKE
) $(MFLAGS
) docset
295 cd cgi-bin
; $(MAKE
) $(MFLAGS
) makedocset
296 cgi-bin
/makedocset org.cups.docset \
297 `svnversion . | sed -e '1,$$s/[a-zA-Z]//g'` \
298 doc
/help
/api-
*.tokens
299 $(RM
) doc
/help
/api-
*.tokens
300 echo Indexing docset...
301 /Applications
/Xcode.app
/Contents
/Developer
/usr
/bin
/docsetutil index org.cups.docset
302 echo Generating docset archive and feed...
303 $(RM
) org.cups.docset.atom
304 /Applications
/Xcode.app
/Contents
/Developer
/usr
/bin
/docsetutil package
--output org.cups.docset.xar \
305 --atom org.cups.docset.atom \
306 --download-url http
://www.cups.org
/org.cups.docset.xar \
311 # Lines of code computation...
315 for
dir in cups scheduler
; do \
316 (cd
$$dir; $(MAKE
) $(MFLAGS
) sloc
) || exit
1;\
321 # Make software distributions using EPM (http://www.msweet.org/)...
324 EPMFLAGS
= -v
--output-dir
dist $(EPMARCH
)
326 bsd deb pkg slackware tardist
:
327 epm
$(EPMFLAGS
) -f
$@ cups packaging
/cups.list
330 epm
$(EPMFLAGS
) -s packaging
/installer.gif cups packaging
/cups.list
333 epm
$(EPMFLAGS
) -f rpm
-s packaging
/installer.gif cups packaging
/cups.list
338 $(MAKE
) $(MFLAGS
) epm
340 *BSD
*) $(MAKE
) $(MFLAGS
) bsd
;; \
341 Darwin
*) $(MAKE
) $(MFLAGS
) osx
;; \
342 Linux
*) test ! -x
/usr
/bin
/rpm ||
$(MAKE
) $(MFLAGS
) rpm
;; \
343 SunOS
*) $(MAKE
) $(MFLAGS
) pkg
;; \
348 # Don't run top-level build targets in parallel...