]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/Makefile
Merge changes from CUPS 1.5svn-r9062.
[thirdparty/cups.git] / cups / Makefile
CommitLineData
ef416fc2 1#
b19ccc9e 2# "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $"
ef416fc2 3#
f8b3a85b 4# API library Makefile for CUPS.
ef416fc2 5#
f8b3a85b 6# Copyright 2007-2010 by Apple Inc.
ef416fc2 7# Copyright 1997-2006 by Easy Software Products, all rights reserved.
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# This file is subject to the Apple OS-Developed Software exception.
16#
17
18include ../Makedefs
19
20#
21# Object files...
22#
23
24LIBOBJS = \
757d2cad 25 adminutil.o \
ef416fc2 26 array.o \
27 attr.o \
28 auth.o \
29 backchannel.o \
a4d04587 30 backend.o \
66ab9486 31 conflicts.o \
fa73b229 32 custom.o \
ae71f5de 33 debug.o \
ef416fc2 34 dest.o \
35 dir.o \
36 emit.o \
37 encode.o \
38 file.o \
ae71f5de 39 getdevices.o \
89d46774 40 getifaddrs.o \
ef416fc2 41 getputfile.o \
42 globals.o \
43 http.o \
44 http-addr.o \
45 http-addrlist.o \
46 http-support.o \
47 ipp.o \
48 ipp-support.o \
49 langprintf.o \
50 language.o \
fa73b229 51 localize.o \
ef416fc2 52 mark.o \
53 md5.o \
54 md5passwd.o \
fa73b229 55 notify.o \
ef416fc2 56 options.o \
57 page.o \
58 ppd.o \
54afec33
MS
59 pwg-file.o \
60 pwg-media.o \
61 pwg-ppd.o \
ecdc0628 62 request.o \
f7deaa1a 63 sidechannel.o \
91c84a35 64 snmp.o \
ef416fc2 65 snprintf.o \
66 string.o \
67 tempfile.o \
68 transcode.o \
69 usersys.o \
70 util.o
e1d6a774 71LIB32OBJS = $(LIBOBJS:.o=.32.o)
72LIB64OBJS = $(LIBOBJS:.o=.64.o)
ef416fc2 73OBJS = \
74 $(LIBOBJS) \
e1d6a774 75 $(LIB32OBJS) \
76 $(LIB64OBJS) \
757d2cad 77 testadmin.o \
ef416fc2 78 testarray.o \
06d4e77b 79 testconflicts.o \
09a101d6 80 testcups.o \
ef416fc2 81 testfile.o \
82 testhttp.o \
83 testi18n.o \
84 testipp.o \
20fbc903 85 testoptions.o \
ef416fc2 86 testlang.o \
fa73b229 87 testppd.o \
54afec33 88 testpwg.o \
91c84a35 89 testsnmp.o \
ef416fc2 90 php_cups_wrap.o
91
92
93#
94# Header files to install...
95#
96
97HEADERS = \
757d2cad 98 adminutil.h \
ef416fc2 99 array.h \
d09495fa 100 backend.h \
ef416fc2 101 cups.h \
102 dir.h \
103 file.h \
104 http.h \
ef416fc2 105 ipp.h \
106 language.h \
ef416fc2 107 ppd.h \
ac884b6a 108 raster.h \
f7deaa1a 109 sidechannel.h \
a41f09e2
MS
110 transcode.h \
111 versioning.h
ef416fc2 112
71e16022
MS
113HEADERSPRIV = \
114 cups-private.h \
115 debug-private.h \
116 file-private.h \
117 http-private.h \
118 ipp-private.h \
119 language-private.h \
120 md5-private.h \
121 ppd-private.h \
122 pwg-private.h \
123 snmp-private.h \
124 string-private.h
ef416fc2 125
126#
127# Targets in this directory...
128#
129
c9fc04c6 130LIBTARGETS = \
f8b3a85b 131 $(LIBCUPSSTATIC) \
ef416fc2 132 $(LIBCUPS) \
e1d6a774 133 $(LIB32CUPS) \
f8b3a85b 134 $(LIB64CUPS)
5f64df29
MS
135
136UNITTARGETS = \
137 testadmin \
ef416fc2 138 testarray \
5f64df29
MS
139 testconflicts \
140 testcups \
ef416fc2 141 testfile \
142 testhttp \
143 testi18n \
144 testipp \
fa73b229 145 testlang \
20fbc903 146 testoptions \
5f64df29 147 testppd \
54afec33 148 testpwg \
5f64df29 149 testsnmp
c9fc04c6
MS
150
151TARGETS = \
5f64df29 152 $(LIBTARGETS)
ef416fc2 153
154
155#
156# Make all targets...
157#
158
f8b3a85b 159all: $(TARGETS)
ef416fc2 160
161
c9fc04c6
MS
162#
163# Make library targets...
164#
165
166libs: $(LIBTARGETS)
167
168
5f64df29
MS
169#
170# Make unit tests...
171#
172
173unittests: $(UNITTARGETS)
174
175
ef416fc2 176#
177# Remove object and target files...
178#
179
180clean:
5f64df29 181 $(RM) $(OBJS) $(TARGETS) $(UNITTARGETS)
f301802f 182 $(RM) libcups.so libcups.sl libcups.dylib
ed486911 183 $(RM) -r 32bit 64bit
ef416fc2 184
185
186#
187# Update dependencies (without system header dependencies...)
188#
189
190depend:
e1d6a774 191 touch Dependencies.tmp
192 makedepend -Y -I.. -fDependencies.tmp $(OBJS:.o=.c) >/dev/null 2>&1
193 $(RM) Dependencies
194 cp Dependencies.tmp Dependencies
91c84a35
MS
195 sed -E -e '1,$$s/^([^.]+)\.o:/\1\.32.o: \1\.c /' Dependencies.tmp >>Dependencies
196 sed -E -e '1,$$s/^([^.]+)\.o:/\1\.64.o: \1\.c /' Dependencies.tmp >>Dependencies
e1d6a774 197 $(RM) Dependencies.tmp
ef416fc2 198
199
200#
50fe7201 201# Install all targets...
ef416fc2 202#
203
50fe7201
MS
204install: all install-data install-headers install-libs install-exec
205
206
207#
208# Install data files...
209#
210
211install-data:
212
213
214#
215# Install programs...
216#
217
218install-exec:
219
220
221#
222# Install headers...
223#
224
225install-headers:
226 echo Installing header files into $(INCLUDEDIR)/cups...
227 $(INSTALL_DIR) -m 755 $(INCLUDEDIR)/cups
228 for file in $(HEADERS); do \
229 $(INSTALL_DATA) $$file $(INCLUDEDIR)/cups; \
230 done
71e16022
MS
231 if test "x$(privateinclude)" != x; then \
232 echo Installing private header files into $(PRIVATEINCLUDE)...; \
5180a04c 233 $(INSTALL_DIR) -m 755 $(PRIVATEINCLUDE); \
71e16022 234 for file in $(HEADERSPRIV); do \
5180a04c 235 $(INSTALL_DATA) $$file $(PRIVATEINCLUDE)/$$file; \
71e16022
MS
236 done; \
237 fi
50fe7201
MS
238
239
240#
241# Install libraries...
242#
243
244install-libs: $(INSTALLSTATIC) $(INSTALL32) $(INSTALL64)
245 echo Installing libraries in $(LIBDIR)...
bd7854cb 246 $(INSTALL_DIR) -m 755 $(LIBDIR)
ef416fc2 247 $(INSTALL_LIB) $(LIBCUPS) $(LIBDIR)
248 if test $(LIBCUPS) = "libcups.so.2" -o $(LIBCUPS) = "libcups.sl.2"; then \
249 $(RM) $(LIBDIR)/`basename $(LIBCUPS) .2`; \
250 $(LN) $(LIBCUPS) $(LIBDIR)/`basename $(LIBCUPS) .2`; \
251 fi
252 if test $(LIBCUPS) = "libcups.2.dylib"; then \
ef416fc2 253 $(RM) $(LIBDIR)/libcups.dylib; \
254 $(LN) $(LIBCUPS) $(LIBDIR)/libcups.dylib; \
255 fi
09a101d6 256 if test "x$(SYMROOT)" != "x"; then \
257 $(INSTALL_DIR) $(SYMROOT); \
50fe7201 258 cp $(LIBCUPS) $(SYMROOT); \
09a101d6 259 fi
923edb68 260
261installstatic:
262 $(INSTALL_DIR) -m 755 $(LIBDIR)
f8b3a85b
MS
263 $(INSTALL_LIB) -m 755 $(LIBCUPSSTATIC) $(LIBDIR)
264 $(RANLIB) $(LIBDIR)/$(LIBCUPSSTATIC)
265 $(CHMOD) 555 $(LIBDIR)/$(LIBCUPSSTATIC)
ef416fc2 266
e1d6a774 267install32bit:
50fe7201 268 echo Installing libraries in $(LIB32DIR)...
e1d6a774 269 $(INSTALL_DIR) -m 755 $(LIB32DIR)
f301802f 270 $(INSTALL_LIB) 32bit/libcups.so.2 $(LIB32DIR)/libcups.so.2
ed486911 271 $(LN) libcups.so.2 $(LIB32DIR)/libcups.so
e1d6a774 272
273install64bit:
50fe7201 274 echo Installing libraries in $(LIB64DIR)...
e1d6a774 275 $(INSTALL_DIR) -m 755 $(LIB64DIR)
f301802f 276 $(INSTALL_LIB) 64bit/libcups.so.2 $(LIB64DIR)/libcups.so.2
ed486911 277 $(LN) libcups.so.2 $(LIB64DIR)/libcups.so
e1d6a774 278
ef416fc2 279
757d2cad 280#
281# Uninstall object and target files...
282#
283
e1d6a774 284uninstall: $(UNINSTALL32) $(UNINSTALL64)
757d2cad 285 $(RM) $(LIBDIR)/libcups.2.dylib
286 $(RM) $(LIBDIR)/libcups.a
287 $(RM) $(LIBDIR)/libcups.dylib
288 $(RM) $(LIBDIR)/libcups_s.a
289 $(RM) $(LIBDIR)/libcups.sl
290 $(RM) $(LIBDIR)/libcups.sl.2
291 $(RM) $(LIBDIR)/libcups.so
292 $(RM) $(LIBDIR)/libcups.so.2
293 -$(RMDIR) $(LIBDIR)
294 for file in $(HEADERS); do \
295 $(RM) $(INCLUDEDIR)/cups/$$file; \
296 done
297 -$(RMDIR) $(INCLUDEDIR)/cups
298
e1d6a774 299uninstall32bit:
300 $(RM) $(LIB32DIR)/libcups.so
301 $(RM) $(LIB32DIR)/libcups.so.2
302 -$(RMDIR) $(LIB32DIR)
303
304uninstall64bit:
305 $(RM) $(LIB64DIR)/libcups.so
306 $(RM) $(LIB64DIR)/libcups.so.2
307 -$(RMDIR) $(LIB64DIR)
308
757d2cad 309
ef416fc2 310#
311# libcups.so.2, libcups.sl.2
312#
313
314libcups.so.2 libcups.sl.2: $(LIBOBJS)
315 echo Linking $@...
c168a833
MS
316 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(LIBOBJS) $(LIBGSSAPI) \
317 $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
ef416fc2 318 $(RM) `basename $@ .2`
319 $(LN) $@ `basename $@ .2`
320
321
e1d6a774 322#
f301802f 323# 32bit/libcups.so.2
e1d6a774 324#
325
f301802f 32632bit/libcups.so.2: $(LIB32OBJS)
e1d6a774 327 echo Linking 32-bit $@...
f301802f 328 -mkdir 32bit
c168a833
MS
329 $(DSO) $(ARCH32FLAGS) $(DSO32FLAGS) -o $@ $(LIB32OBJS) $(LIBGSSAPI) \
330 $(DNSSDLIBS) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
f301802f 331 $(RM) 32bit/libcups.so
332 $(LN) libcups.so.2 32bit/libcups.so
e1d6a774 333
334
335#
f301802f 336# 64bit/libcups.so.2
e1d6a774 337#
338
f301802f 33964bit/libcups.so.2: $(LIB64OBJS)
e1d6a774 340 echo Linking 64-bit $@...
f301802f 341 -mkdir 64bit
c168a833
MS
342 $(DSO) $(ARCH64FLAGS) $(DSO64FLAGS) -o $@ $(LIB64OBJS) $(LIBGSSAPI) \
343 $(DNSSDLIBS) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
f301802f 344 $(RM) 64bit/libcups.so
345 $(LN) libcups.so.2 64bit/libcups.so
e1d6a774 346
347
ef416fc2 348#
349# libcups.2.dylib
350#
351
f8b3a85b
MS
352libcups.2.dylib: $(LIBOBJS) $(LIBCUPSORDER)
353 echo Creating export list for $@...
354 nm $(LIBOBJS) 2>/dev/null | grep "T _" | awk '{print $$3}' | \
355 grep -v -e '^(_cupsConnect|_cupsSetDefaults|_cupsSetHTTPError|_cupsUserDefault|_httpWait)$$' | \
356 sort >t.exp
ef416fc2 357 echo Linking $@...
e1d6a774 358 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ \
fa73b229 359 -install_name $(libdir)/$@ \
f7deaa1a 360 -current_version 2.8.0 \
ef416fc2 361 -compatibility_version 2.0.0 \
f8b3a85b 362 -exported_symbols_list t.exp \
09a101d6 363 -sectorder __TEXT __text $(LIBCUPSORDER) \
c168a833
MS
364 $(LIBOBJS) $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) \
365 $(COMMONLIBS) $(LIBZ)
f8b3a85b 366 $(RM) libcups.dylib t.exp
ef416fc2 367 $(LN) $@ libcups.dylib
368
369
370#
371# libcups_s.a
372#
373
a74454a7 374libcups_s.a: $(LIBOBJS) libcups_s.exp
ef416fc2 375 echo Creating $@...
c168a833
MS
376 $(DSO) $(DSOFLAGS) -Wl,-bexport:libcups_s.exp -o libcups_s.o \
377 $(LIBOBJS) $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) \
378 $(COMMONLIBS) $(LIBZ) -lm
ef416fc2 379 $(RM) $@
380 $(AR) $(ARFLAGS) $@ libcups_s.o
381
382
383#
384# libcups.la
385#
386
387libcups.la: $(LIBOBJS)
388 echo Linking $@...
c168a833
MS
389 $(CC) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(LIBOBJS:.o=.lo) \
390 -rpath $(LIBDIR) -version-info 2:8 $(LIBGSSAPI) $(SSLLIBS) \
391 $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
ef416fc2 392
393
394#
395# libcups.a
396#
397
398libcups.a: $(LIBOBJS)
399 echo Archiving $@...
400 $(RM) $@
401 $(AR) $(ARFLAGS) $@ $(LIBOBJS)
402 $(RANLIB) $@
403
404
757d2cad 405#
406# testadmin (dependency on static CUPS library is intentional)
407#
408
f8b3a85b 409testadmin: testadmin.o $(LIBCUPSSTATIC)
757d2cad 410 echo Linking $@...
f8b3a85b 411 $(CC) $(LDFLAGS) -o $@ testadmin.o $(LIBCUPSSTATIC) \
c168a833 412 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
757d2cad 413
414
ef416fc2 415#
416# testarray (dependency on static CUPS library is intentional)
417#
418
f8b3a85b 419testarray: testarray.o $(LIBCUPSSTATIC)
ef416fc2 420 echo Linking $@...
f8b3a85b 421 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testarray.o $(LIBCUPSSTATIC) \
c168a833 422 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
c9fc04c6
MS
423 echo Running array API tests...
424 ./testarray
ef416fc2 425
426
06d4e77b
MS
427#
428# testconflicts (dependency on static CUPS library is intentional)
429#
430
f8b3a85b 431testconflicts: testconflicts.o $(LIBCUPSSTATIC)
06d4e77b 432 echo Linking $@...
f8b3a85b 433 $(CC) $(LDFLAGS) -o $@ testconflicts.o $(LIBCUPSSTATIC) \
c168a833 434 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
06d4e77b
MS
435
436
09a101d6 437#
438# testcups (dependency on static CUPS library is intentional)
439#
440
f8b3a85b 441testcups: testcups.o $(LIBCUPSSTATIC)
09a101d6 442 echo Linking $@...
f8b3a85b 443 $(CC) $(LDFLAGS) -o $@ testcups.o $(LIBCUPSSTATIC) \
c168a833 444 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
09a101d6 445
446
ef416fc2 447#
448# testfile (dependency on static CUPS library is intentional)
449#
450
f8b3a85b 451testfile: testfile.o $(LIBCUPSSTATIC)
ef416fc2 452 echo Linking $@...
f8b3a85b 453 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testfile.o $(LIBCUPSSTATIC) \
c168a833 454 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
c9fc04c6
MS
455 echo Running file API tests...
456 ./testfile
ef416fc2 457
458
459#
460# testhttp (dependency on static CUPS library is intentional)
461#
462
f8b3a85b 463testhttp: testhttp.o $(LIBCUPSSTATIC)
ef416fc2 464 echo Linking $@...
f8b3a85b 465 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testhttp.o $(LIBCUPSSTATIC) \
c168a833 466 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
c9fc04c6
MS
467 echo Running HTTP API tests...
468 ./testhttp
ef416fc2 469
470
471#
472# testipp (dependency on static CUPS library is intentional)
473#
474
f8b3a85b 475testipp: testipp.o $(LIBCUPSSTATIC)
ef416fc2 476 echo Linking $@...
f8b3a85b 477 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testipp.o $(LIBCUPSSTATIC) \
c168a833 478 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
c9fc04c6
MS
479 echo Running IPP API tests...
480 ./testipp
ef416fc2 481
482
483#
484# testi18n (dependency on static CUPS library is intentional)
485#
486
f8b3a85b 487testi18n: testi18n.o $(LIBCUPSSTATIC)
ef416fc2 488 echo Linking $@...
f8b3a85b 489 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testi18n.o $(LIBCUPSSTATIC) \
c168a833 490 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
c9fc04c6
MS
491 echo Running internationalization API tests...
492 ./testi18n
ef416fc2 493
494
495#
496# testlang (dependency on static CUPS library is intentional)
497#
498
f8b3a85b 499testlang: testlang.o $(LIBCUPSSTATIC)
ef416fc2 500 echo Linking $@...
f8b3a85b 501 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testlang.o $(LIBCUPSSTATIC) \
c168a833 502 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
c9fc04c6
MS
503 echo Running language API tests...
504 ./testlang
ef416fc2 505
506
20fbc903
MS
507#
508# testoptions (dependency on static CUPS library is intentional)
509#
510
f8b3a85b 511testoptions: testoptions.o $(LIBCUPSSTATIC)
20fbc903 512 echo Linking $@...
f8b3a85b 513 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testoptions.o $(LIBCUPSSTATIC) \
c168a833 514 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
20fbc903
MS
515 echo Running option API tests...
516 ./testoptions
517
518
fa73b229 519#
520# testppd (dependency on static CUPS library is intentional)
521#
522
f8b3a85b 523testppd: testppd.o $(LIBCUPSSTATIC) test.ppd test2.ppd
fa73b229 524 echo Linking $@...
f8b3a85b 525 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testppd.o $(LIBCUPSSTATIC) \
c168a833 526 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
c9fc04c6
MS
527 echo Running PPD API tests...
528 ./testppd
fa73b229 529
530
54afec33
MS
531#
532# testpwg (dependency on static CUPS library is intentional)
533#
534
535testpwg: testpwg.o $(LIBCUPSSTATIC) test.ppd
536 echo Linking $@...
537 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testpwg.o $(LIBCUPSSTATIC) \
538 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
539 echo Running PWG API tests...
540 ./testpwg test.ppd
541
542
91c84a35
MS
543#
544# testsnmp (dependency on static CUPS library is intentional)
545#
546
f8b3a85b 547testsnmp: testsnmp.o $(LIBCUPSSTATIC)
91c84a35 548 echo Linking $@...
f8b3a85b 549 $(CC) $(LDFLAGS) -o $@ testsnmp.o $(LIBCUPSSTATIC) \
c168a833 550 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
91c84a35
MS
551
552
ef416fc2 553#
554# Automatic API help files...
555#
556
557apihelp:
558 echo Generating CUPS API help files...
5a738aea
MS
559 mxmldoc --section "Programming" \
560 --title "Introduction to CUPS Programming" \
561 --css ../doc/cups-printable.css \
562 --header api-overview.header --intro api-overview.shtml \
563 >../doc/help/api-overview.html
ef416fc2 564 mxmldoc --section "Programming" --title "Array API" \
5a738aea
MS
565 --css ../doc/cups-printable.css \
566 --header api-array.header --intro api-array.shtml \
f11a948a 567 api-array.xml \
ef416fc2 568 array.h array.c >../doc/help/api-array.html
f11a948a
MS
569 mxmldoc --tokens help/api-array.html api-array.xml >../doc/help/api-array.tokens
570 $(RM) api-array.xml
ef416fc2 571 mxmldoc --section "Programming" --title "CUPS API" \
5a738aea
MS
572 --css ../doc/cups-printable.css \
573 --header api-cups.header --intro api-cups.shtml \
f11a948a 574 api-cups.xml \
426c6a59 575 cups.h adminutil.c dest.c language.c notify.c \
ef416fc2 576 options.c tempfile.c usersys.c \
577 util.c >../doc/help/api-cups.html
f11a948a
MS
578 mxmldoc --tokens help/api-cups.html api-cups.xml >../doc/help/api-cups.tokens
579 $(RM) api-cups.xml
ef416fc2 580 mxmldoc --section "Programming" --title "File and Directory APIs" \
5a738aea
MS
581 --css ../doc/cups-printable.css \
582 --header api-filedir.header --intro api-filedir.shtml \
f11a948a 583 api-filedir.xml \
ef416fc2 584 file.h file.c dir.h dir.c >../doc/help/api-filedir.html
f11a948a
MS
585 mxmldoc --tokens api-filedir.xml >../doc/help/api-filedir.tokens
586 $(RM) api-filedir.xml
ef416fc2 587 mxmldoc --section "Programming" --title "PPD API" \
5a738aea
MS
588 --css ../doc/cups-printable.css \
589 --header api-ppd.header --intro api-ppd.shtml \
f11a948a 590 api-ppd.xml \
66ab9486 591 ppd.h attr.c conflicts.c custom.c emit.c localize.c mark.c page.c \
ef416fc2 592 ppd.c >../doc/help/api-ppd.html
f11a948a
MS
593 mxmldoc --tokens help/api-ppd.html api-ppd.xml >../doc/help/api-ppd.tokens
594 $(RM) api-ppd.xml
ef416fc2 595 mxmldoc --section "Programming" --title "HTTP and IPP APIs" \
5a738aea
MS
596 --css ../doc/cups-printable.css \
597 --header api-httpipp.header --intro api-httpipp.shtml \
f11a948a 598 api-httpipp.xml \
ae71f5de
MS
599 http.h ipp.h auth.c getdevices.c getputfile.c encode.c \
600 http.c http-addr.c http-support.c ipp.c ipp-support.c \
601 md5passwd.c request.c >../doc/help/api-httpipp.html
f11a948a
MS
602 mxmldoc --tokens help/api-httpipp.html api-httpipp.xml >../doc/help/api-httpipp.tokens
603 $(RM) api-httpipp.xml
5a738aea
MS
604 mxmldoc --section "Programming" \
605 --title "Filter and Backend Programming" \
606 --css ../doc/cups-printable.css \
607 --header api-filter.header --intro api-filter.shtml \
f11a948a 608 api-filter.xml \
ac884b6a 609 backchannel.c backend.h backend.c sidechannel.c sidechannel.h \
7a14d768 610 >../doc/help/api-filter.html
f11a948a
MS
611 mxmldoc --tokens help/api-filter.html api-filter.xml >../doc/help/api-filter.tokens
612 $(RM) api-filter.xml
5a738aea
MS
613
614framedhelp:
615 echo Generating CUPS API help files...
616 mxmldoc --framed api-overview \
617 --section "Programming" \
618 --title "Introduction to CUPS Programming" \
619 --css ../doc/cups-printable.css \
620 --header api-overview.header --intro api-overview.shtml
621 mxmldoc --framed api-array \
622 --section "Programming" --title "Array API" \
623 --css ../doc/cups-printable.css \
624 --header api-array.header --intro api-array.shtml \
625 array.h array.c
626 mxmldoc --framed api-cups \
627 --section "Programming" --title "CUPS API" \
628 --css ../doc/cups-printable.css \
629 --header api-cups.header --intro api-cups.shtml \
426c6a59 630 cups.h adminutil.c dest.c language.c notify.c \
5a738aea 631 options.c tempfile.c usersys.c \
ac884b6a 632 util.c
5a738aea
MS
633 mxmldoc --framed api-filedir \
634 --section "Programming" --title "File and Directory APIs" \
635 --css ../doc/cups-printable.css \
636 --header api-filedir.header --intro api-filedir.shtml \
ac884b6a 637 file.h file.c dir.h dir.c
5a738aea
MS
638 mxmldoc --framed api-ppd \
639 --section "Programming" --title "PPD API" \
640 --css ../doc/cups-printable.css \
641 --header api-ppd.header --intro api-ppd.shtml \
66ab9486
MS
642 ppd.h attr.c conflicts.c custom.c emit.c localize.c mark.c \
643 page.c ppd.c
5a738aea
MS
644 mxmldoc --framed api-httpipp \
645 --section "Programming" --title "HTTP and IPP APIs" \
646 --css ../doc/cups-printable.css \
647 --header api-httpipp.header --intro api-httpipp.shtml \
ae71f5de
MS
648 http.h ipp.h auth.c getdevices.c getputfile.c encode.c \
649 http.c http-addr.c http-support.c ipp.c ipp-support.c \
650 md5passwd.c request.c
5a738aea
MS
651 mxmldoc --framed api-filter \
652 --section "Programming" \
653 --title "Filter and Backend Programming" \
654 --css ../doc/cups-printable.css \
655 --header api-filter.header --intro api-filter.shtml \
7a14d768 656 backchannel.c backend.h backend.c sidechannel.c sidechannel.h
ef416fc2 657
658
659#
660# Dependencies...
661#
662
663include Dependencies
664
665
666#
b19ccc9e 667# End of "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $".
ef416fc2 668#