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