]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/Makefile
Merge changes from CUPS 1.5svn-r9062.
[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 transcode.o \
69 usersys.o \
70 util.o
71 LIB32OBJS = $(LIBOBJS:.o=.32.o)
72 LIB64OBJS = $(LIBOBJS:.o=.64.o)
73 OBJS = \
74 $(LIBOBJS) \
75 $(LIB32OBJS) \
76 $(LIB64OBJS) \
77 testadmin.o \
78 testarray.o \
79 testconflicts.o \
80 testcups.o \
81 testfile.o \
82 testhttp.o \
83 testi18n.o \
84 testipp.o \
85 testoptions.o \
86 testlang.o \
87 testppd.o \
88 testpwg.o \
89 testsnmp.o \
90 php_cups_wrap.o
91
92
93 #
94 # Header files to install...
95 #
96
97 HEADERS = \
98 adminutil.h \
99 array.h \
100 backend.h \
101 cups.h \
102 dir.h \
103 file.h \
104 http.h \
105 ipp.h \
106 language.h \
107 ppd.h \
108 raster.h \
109 sidechannel.h \
110 transcode.h \
111 versioning.h
112
113 HEADERSPRIV = \
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
125
126 #
127 # Targets in this directory...
128 #
129
130 LIBTARGETS = \
131 $(LIBCUPSSTATIC) \
132 $(LIBCUPS) \
133 $(LIB32CUPS) \
134 $(LIB64CUPS)
135
136 UNITTARGETS = \
137 testadmin \
138 testarray \
139 testconflicts \
140 testcups \
141 testfile \
142 testhttp \
143 testi18n \
144 testipp \
145 testlang \
146 testoptions \
147 testppd \
148 testpwg \
149 testsnmp
150
151 TARGETS = \
152 $(LIBTARGETS)
153
154
155 #
156 # Make all targets...
157 #
158
159 all: $(TARGETS)
160
161
162 #
163 # Make library targets...
164 #
165
166 libs: $(LIBTARGETS)
167
168
169 #
170 # Make unit tests...
171 #
172
173 unittests: $(UNITTARGETS)
174
175
176 #
177 # Remove object and target files...
178 #
179
180 clean:
181 $(RM) $(OBJS) $(TARGETS) $(UNITTARGETS)
182 $(RM) libcups.so libcups.sl libcups.dylib
183 $(RM) -r 32bit 64bit
184
185
186 #
187 # Update dependencies (without system header dependencies...)
188 #
189
190 depend:
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
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
197 $(RM) Dependencies.tmp
198
199
200 #
201 # Install all targets...
202 #
203
204 install: all install-data install-headers install-libs install-exec
205
206
207 #
208 # Install data files...
209 #
210
211 install-data:
212
213
214 #
215 # Install programs...
216 #
217
218 install-exec:
219
220
221 #
222 # Install headers...
223 #
224
225 install-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
231 if test "x$(privateinclude)" != x; then \
232 echo Installing private header files into $(PRIVATEINCLUDE)...; \
233 $(INSTALL_DIR) -m 755 $(PRIVATEINCLUDE); \
234 for file in $(HEADERSPRIV); do \
235 $(INSTALL_DATA) $$file $(PRIVATEINCLUDE)/$$file; \
236 done; \
237 fi
238
239
240 #
241 # Install libraries...
242 #
243
244 install-libs: $(INSTALLSTATIC) $(INSTALL32) $(INSTALL64)
245 echo Installing libraries in $(LIBDIR)...
246 $(INSTALL_DIR) -m 755 $(LIBDIR)
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 \
253 $(RM) $(LIBDIR)/libcups.dylib; \
254 $(LN) $(LIBCUPS) $(LIBDIR)/libcups.dylib; \
255 fi
256 if test "x$(SYMROOT)" != "x"; then \
257 $(INSTALL_DIR) $(SYMROOT); \
258 cp $(LIBCUPS) $(SYMROOT); \
259 fi
260
261 installstatic:
262 $(INSTALL_DIR) -m 755 $(LIBDIR)
263 $(INSTALL_LIB) -m 755 $(LIBCUPSSTATIC) $(LIBDIR)
264 $(RANLIB) $(LIBDIR)/$(LIBCUPSSTATIC)
265 $(CHMOD) 555 $(LIBDIR)/$(LIBCUPSSTATIC)
266
267 install32bit:
268 echo Installing libraries in $(LIB32DIR)...
269 $(INSTALL_DIR) -m 755 $(LIB32DIR)
270 $(INSTALL_LIB) 32bit/libcups.so.2 $(LIB32DIR)/libcups.so.2
271 $(LN) libcups.so.2 $(LIB32DIR)/libcups.so
272
273 install64bit:
274 echo Installing libraries in $(LIB64DIR)...
275 $(INSTALL_DIR) -m 755 $(LIB64DIR)
276 $(INSTALL_LIB) 64bit/libcups.so.2 $(LIB64DIR)/libcups.so.2
277 $(LN) libcups.so.2 $(LIB64DIR)/libcups.so
278
279
280 #
281 # Uninstall object and target files...
282 #
283
284 uninstall: $(UNINSTALL32) $(UNINSTALL64)
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
299 uninstall32bit:
300 $(RM) $(LIB32DIR)/libcups.so
301 $(RM) $(LIB32DIR)/libcups.so.2
302 -$(RMDIR) $(LIB32DIR)
303
304 uninstall64bit:
305 $(RM) $(LIB64DIR)/libcups.so
306 $(RM) $(LIB64DIR)/libcups.so.2
307 -$(RMDIR) $(LIB64DIR)
308
309
310 #
311 # libcups.so.2, libcups.sl.2
312 #
313
314 libcups.so.2 libcups.sl.2: $(LIBOBJS)
315 echo Linking $@...
316 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(LIBOBJS) $(LIBGSSAPI) \
317 $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
318 $(RM) `basename $@ .2`
319 $(LN) $@ `basename $@ .2`
320
321
322 #
323 # 32bit/libcups.so.2
324 #
325
326 32bit/libcups.so.2: $(LIB32OBJS)
327 echo Linking 32-bit $@...
328 -mkdir 32bit
329 $(DSO) $(ARCH32FLAGS) $(DSO32FLAGS) -o $@ $(LIB32OBJS) $(LIBGSSAPI) \
330 $(DNSSDLIBS) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
331 $(RM) 32bit/libcups.so
332 $(LN) libcups.so.2 32bit/libcups.so
333
334
335 #
336 # 64bit/libcups.so.2
337 #
338
339 64bit/libcups.so.2: $(LIB64OBJS)
340 echo Linking 64-bit $@...
341 -mkdir 64bit
342 $(DSO) $(ARCH64FLAGS) $(DSO64FLAGS) -o $@ $(LIB64OBJS) $(LIBGSSAPI) \
343 $(DNSSDLIBS) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
344 $(RM) 64bit/libcups.so
345 $(LN) libcups.so.2 64bit/libcups.so
346
347
348 #
349 # libcups.2.dylib
350 #
351
352 libcups.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
357 echo Linking $@...
358 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ \
359 -install_name $(libdir)/$@ \
360 -current_version 2.8.0 \
361 -compatibility_version 2.0.0 \
362 -exported_symbols_list t.exp \
363 -sectorder __TEXT __text $(LIBCUPSORDER) \
364 $(LIBOBJS) $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) \
365 $(COMMONLIBS) $(LIBZ)
366 $(RM) libcups.dylib t.exp
367 $(LN) $@ libcups.dylib
368
369
370 #
371 # libcups_s.a
372 #
373
374 libcups_s.a: $(LIBOBJS) libcups_s.exp
375 echo Creating $@...
376 $(DSO) $(DSOFLAGS) -Wl,-bexport:libcups_s.exp -o libcups_s.o \
377 $(LIBOBJS) $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) \
378 $(COMMONLIBS) $(LIBZ) -lm
379 $(RM) $@
380 $(AR) $(ARFLAGS) $@ libcups_s.o
381
382
383 #
384 # libcups.la
385 #
386
387 libcups.la: $(LIBOBJS)
388 echo Linking $@...
389 $(CC) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(LIBOBJS:.o=.lo) \
390 -rpath $(LIBDIR) -version-info 2:8 $(LIBGSSAPI) $(SSLLIBS) \
391 $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
392
393
394 #
395 # libcups.a
396 #
397
398 libcups.a: $(LIBOBJS)
399 echo Archiving $@...
400 $(RM) $@
401 $(AR) $(ARFLAGS) $@ $(LIBOBJS)
402 $(RANLIB) $@
403
404
405 #
406 # testadmin (dependency on static CUPS library is intentional)
407 #
408
409 testadmin: testadmin.o $(LIBCUPSSTATIC)
410 echo Linking $@...
411 $(CC) $(LDFLAGS) -o $@ testadmin.o $(LIBCUPSSTATIC) \
412 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
413
414
415 #
416 # testarray (dependency on static CUPS library is intentional)
417 #
418
419 testarray: testarray.o $(LIBCUPSSTATIC)
420 echo Linking $@...
421 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testarray.o $(LIBCUPSSTATIC) \
422 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
423 echo Running array API tests...
424 ./testarray
425
426
427 #
428 # testconflicts (dependency on static CUPS library is intentional)
429 #
430
431 testconflicts: testconflicts.o $(LIBCUPSSTATIC)
432 echo Linking $@...
433 $(CC) $(LDFLAGS) -o $@ testconflicts.o $(LIBCUPSSTATIC) \
434 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
435
436
437 #
438 # testcups (dependency on static CUPS library is intentional)
439 #
440
441 testcups: testcups.o $(LIBCUPSSTATIC)
442 echo Linking $@...
443 $(CC) $(LDFLAGS) -o $@ testcups.o $(LIBCUPSSTATIC) \
444 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
445
446
447 #
448 # testfile (dependency on static CUPS library is intentional)
449 #
450
451 testfile: testfile.o $(LIBCUPSSTATIC)
452 echo Linking $@...
453 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testfile.o $(LIBCUPSSTATIC) \
454 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
455 echo Running file API tests...
456 ./testfile
457
458
459 #
460 # testhttp (dependency on static CUPS library is intentional)
461 #
462
463 testhttp: testhttp.o $(LIBCUPSSTATIC)
464 echo Linking $@...
465 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testhttp.o $(LIBCUPSSTATIC) \
466 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
467 echo Running HTTP API tests...
468 ./testhttp
469
470
471 #
472 # testipp (dependency on static CUPS library is intentional)
473 #
474
475 testipp: testipp.o $(LIBCUPSSTATIC)
476 echo Linking $@...
477 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testipp.o $(LIBCUPSSTATIC) \
478 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
479 echo Running IPP API tests...
480 ./testipp
481
482
483 #
484 # testi18n (dependency on static CUPS library is intentional)
485 #
486
487 testi18n: testi18n.o $(LIBCUPSSTATIC)
488 echo Linking $@...
489 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testi18n.o $(LIBCUPSSTATIC) \
490 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
491 echo Running internationalization API tests...
492 ./testi18n
493
494
495 #
496 # testlang (dependency on static CUPS library is intentional)
497 #
498
499 testlang: testlang.o $(LIBCUPSSTATIC)
500 echo Linking $@...
501 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testlang.o $(LIBCUPSSTATIC) \
502 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
503 echo Running language API tests...
504 ./testlang
505
506
507 #
508 # testoptions (dependency on static CUPS library is intentional)
509 #
510
511 testoptions: testoptions.o $(LIBCUPSSTATIC)
512 echo Linking $@...
513 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testoptions.o $(LIBCUPSSTATIC) \
514 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
515 echo Running option API tests...
516 ./testoptions
517
518
519 #
520 # testppd (dependency on static CUPS library is intentional)
521 #
522
523 testppd: testppd.o $(LIBCUPSSTATIC) test.ppd test2.ppd
524 echo Linking $@...
525 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testppd.o $(LIBCUPSSTATIC) \
526 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
527 echo Running PPD API tests...
528 ./testppd
529
530
531 #
532 # testpwg (dependency on static CUPS library is intentional)
533 #
534
535 testpwg: 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
543 #
544 # testsnmp (dependency on static CUPS library is intentional)
545 #
546
547 testsnmp: testsnmp.o $(LIBCUPSSTATIC)
548 echo Linking $@...
549 $(CC) $(LDFLAGS) -o $@ testsnmp.o $(LIBCUPSSTATIC) \
550 $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
551
552
553 #
554 # Automatic API help files...
555 #
556
557 apihelp:
558 echo Generating CUPS API help files...
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
564 mxmldoc --section "Programming" --title "Array API" \
565 --css ../doc/cups-printable.css \
566 --header api-array.header --intro api-array.shtml \
567 api-array.xml \
568 array.h array.c >../doc/help/api-array.html
569 mxmldoc --tokens help/api-array.html api-array.xml >../doc/help/api-array.tokens
570 $(RM) api-array.xml
571 mxmldoc --section "Programming" --title "CUPS API" \
572 --css ../doc/cups-printable.css \
573 --header api-cups.header --intro api-cups.shtml \
574 api-cups.xml \
575 cups.h adminutil.c dest.c language.c notify.c \
576 options.c tempfile.c usersys.c \
577 util.c >../doc/help/api-cups.html
578 mxmldoc --tokens help/api-cups.html api-cups.xml >../doc/help/api-cups.tokens
579 $(RM) api-cups.xml
580 mxmldoc --section "Programming" --title "File and Directory APIs" \
581 --css ../doc/cups-printable.css \
582 --header api-filedir.header --intro api-filedir.shtml \
583 api-filedir.xml \
584 file.h file.c dir.h dir.c >../doc/help/api-filedir.html
585 mxmldoc --tokens api-filedir.xml >../doc/help/api-filedir.tokens
586 $(RM) api-filedir.xml
587 mxmldoc --section "Programming" --title "PPD API" \
588 --css ../doc/cups-printable.css \
589 --header api-ppd.header --intro api-ppd.shtml \
590 api-ppd.xml \
591 ppd.h attr.c conflicts.c custom.c emit.c localize.c mark.c page.c \
592 ppd.c >../doc/help/api-ppd.html
593 mxmldoc --tokens help/api-ppd.html api-ppd.xml >../doc/help/api-ppd.tokens
594 $(RM) api-ppd.xml
595 mxmldoc --section "Programming" --title "HTTP and IPP APIs" \
596 --css ../doc/cups-printable.css \
597 --header api-httpipp.header --intro api-httpipp.shtml \
598 api-httpipp.xml \
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
602 mxmldoc --tokens help/api-httpipp.html api-httpipp.xml >../doc/help/api-httpipp.tokens
603 $(RM) api-httpipp.xml
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 \
608 api-filter.xml \
609 backchannel.c backend.h backend.c sidechannel.c sidechannel.h \
610 >../doc/help/api-filter.html
611 mxmldoc --tokens help/api-filter.html api-filter.xml >../doc/help/api-filter.tokens
612 $(RM) api-filter.xml
613
614 framedhelp:
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 \
630 cups.h adminutil.c dest.c language.c notify.c \
631 options.c tempfile.c usersys.c \
632 util.c
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 \
637 file.h file.c dir.h dir.c
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 \
642 ppd.h attr.c conflicts.c custom.c emit.c localize.c mark.c \
643 page.c ppd.c
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 \
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
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 \
656 backchannel.c backend.h backend.c sidechannel.c sidechannel.h
657
658
659 #
660 # Dependencies...
661 #
662
663 include Dependencies
664
665
666 #
667 # End of "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $".
668 #