]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/Makefile
Merge changes from CUPS 1.5svn-r9602.
[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-2011 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 ppd-cache.o \
60 pwg-media.o \
61 request.o \
62 sidechannel.o \
63 snmp.o \
64 snprintf.o \
65 string.o \
66 tempfile.o \
67 thread.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
91
92 #
93 # Header files to install...
94 #
95
96 HEADERS = \
97 adminutil.h \
98 array.h \
99 backend.h \
100 cups.h \
101 dir.h \
102 file.h \
103 http.h \
104 ipp.h \
105 language.h \
106 ppd.h \
107 raster.h \
108 sidechannel.h \
109 transcode.h \
110 versioning.h
111
112 HEADERSPRIV = \
113 cups-private.h \
114 debug-private.h \
115 file-private.h \
116 http-private.h \
117 ipp-private.h \
118 language-private.h \
119 md5-private.h \
120 ppd-private.h \
121 pwg-private.h \
122 snmp-private.h \
123 string-private.h \
124 thread-private.h
125
126
127 #
128 # Targets in this directory...
129 #
130
131 LIBTARGETS = \
132 $(LIBCUPSSTATIC) \
133 $(LIBCUPS) \
134 $(LIB32CUPS) \
135 $(LIB64CUPS)
136
137 UNITTARGETS = \
138 testadmin \
139 testarray \
140 testconflicts \
141 testcups \
142 testfile \
143 testhttp \
144 testi18n \
145 testipp \
146 testlang \
147 testoptions \
148 testppd \
149 testpwg \
150 testsnmp
151
152 TARGETS = \
153 $(LIBTARGETS)
154
155
156 #
157 # Make all targets...
158 #
159
160 all: $(TARGETS)
161
162
163 #
164 # Make library targets...
165 #
166
167 libs: $(LIBTARGETS)
168
169
170 #
171 # Make unit tests...
172 #
173
174 unittests: $(UNITTARGETS)
175
176
177 #
178 # Remove object and target files...
179 #
180
181 clean:
182 $(RM) $(OBJS) $(TARGETS) $(UNITTARGETS)
183 $(RM) libcups.so libcups.sl libcups.dylib
184 $(RM) -r 32bit 64bit
185
186
187 #
188 # Update dependencies (without system header dependencies...)
189 #
190
191 depend:
192 touch Dependencies.tmp
193 makedepend -Y -I.. -fDependencies.tmp $(OBJS:.o=.c) >/dev/null 2>&1
194 $(RM) Dependencies
195 cp Dependencies.tmp Dependencies
196 sed -E -e '1,$$s/^([^.]+)\.o:/\1\.32.o: \1\.c /' Dependencies.tmp >>Dependencies
197 sed -E -e '1,$$s/^([^.]+)\.o:/\1\.64.o: \1\.c /' Dependencies.tmp >>Dependencies
198 $(RM) Dependencies.tmp
199
200
201 #
202 # Install all targets...
203 #
204
205 install: all install-data install-headers install-libs install-exec
206
207
208 #
209 # Install data files...
210 #
211
212 install-data:
213
214
215 #
216 # Install programs...
217 #
218
219 install-exec:
220
221
222 #
223 # Install headers...
224 #
225
226 install-headers:
227 echo Installing header files into $(INCLUDEDIR)/cups...
228 $(INSTALL_DIR) -m 755 $(INCLUDEDIR)/cups
229 for file in $(HEADERS); do \
230 $(INSTALL_DATA) $$file $(INCLUDEDIR)/cups; \
231 done
232 if test "x$(privateinclude)" != x; then \
233 echo Installing private header files into $(PRIVATEINCLUDE)...; \
234 $(INSTALL_DIR) -m 755 $(PRIVATEINCLUDE); \
235 for file in $(HEADERSPRIV); do \
236 $(INSTALL_DATA) $$file $(PRIVATEINCLUDE)/$$file; \
237 done; \
238 fi
239
240
241 #
242 # Install libraries...
243 #
244
245 install-libs: $(INSTALLSTATIC) $(INSTALL32) $(INSTALL64)
246 echo Installing libraries in $(LIBDIR)...
247 $(INSTALL_DIR) -m 755 $(LIBDIR)
248 $(INSTALL_LIB) $(LIBCUPS) $(LIBDIR)
249 if test $(LIBCUPS) = "libcups.so.2" -o $(LIBCUPS) = "libcups.sl.2"; then \
250 $(RM) $(LIBDIR)/`basename $(LIBCUPS) .2`; \
251 $(LN) $(LIBCUPS) $(LIBDIR)/`basename $(LIBCUPS) .2`; \
252 fi
253 if test $(LIBCUPS) = "libcups.2.dylib"; then \
254 $(RM) $(LIBDIR)/libcups.dylib; \
255 $(LN) $(LIBCUPS) $(LIBDIR)/libcups.dylib; \
256 fi
257 if test "x$(SYMROOT)" != "x"; then \
258 $(INSTALL_DIR) $(SYMROOT); \
259 cp $(LIBCUPS) $(SYMROOT); \
260 fi
261
262 installstatic:
263 $(INSTALL_DIR) -m 755 $(LIBDIR)
264 $(INSTALL_LIB) -m 755 $(LIBCUPSSTATIC) $(LIBDIR)
265 $(RANLIB) $(LIBDIR)/$(LIBCUPSSTATIC)
266 $(CHMOD) 555 $(LIBDIR)/$(LIBCUPSSTATIC)
267
268 install32bit:
269 echo Installing libraries in $(LIB32DIR)...
270 $(INSTALL_DIR) -m 755 $(LIB32DIR)
271 $(INSTALL_LIB) 32bit/libcups.so.2 $(LIB32DIR)/libcups.so.2
272 $(LN) libcups.so.2 $(LIB32DIR)/libcups.so
273
274 install64bit:
275 echo Installing libraries in $(LIB64DIR)...
276 $(INSTALL_DIR) -m 755 $(LIB64DIR)
277 $(INSTALL_LIB) 64bit/libcups.so.2 $(LIB64DIR)/libcups.so.2
278 $(LN) libcups.so.2 $(LIB64DIR)/libcups.so
279
280
281 #
282 # Uninstall object and target files...
283 #
284
285 uninstall: $(UNINSTALL32) $(UNINSTALL64)
286 $(RM) $(LIBDIR)/libcups.2.dylib
287 $(RM) $(LIBDIR)/$(LIBCUPSSTATIC)
288 $(RM) $(LIBDIR)/libcups.dylib
289 $(RM) $(LIBDIR)/libcups_s.a
290 $(RM) $(LIBDIR)/libcups.sl
291 $(RM) $(LIBDIR)/libcups.sl.2
292 $(RM) $(LIBDIR)/libcups.so
293 $(RM) $(LIBDIR)/libcups.so.2
294 -$(RMDIR) $(LIBDIR)
295 for file in $(HEADERS); do \
296 $(RM) $(INCLUDEDIR)/cups/$$file; \
297 done
298 -$(RMDIR) $(INCLUDEDIR)/cups
299
300 uninstall32bit:
301 $(RM) $(LIB32DIR)/libcups.so
302 $(RM) $(LIB32DIR)/libcups.so.2
303 -$(RMDIR) $(LIB32DIR)
304
305 uninstall64bit:
306 $(RM) $(LIB64DIR)/libcups.so
307 $(RM) $(LIB64DIR)/libcups.so.2
308 -$(RMDIR) $(LIB64DIR)
309
310
311 #
312 # libcups.so.2, libcups.sl.2
313 #
314
315 libcups.so.2 libcups.sl.2: $(LIBOBJS)
316 echo Linking $@...
317 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(LIBOBJS) $(LIBGSSAPI) \
318 $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
319 $(RM) `basename $@ .2`
320 $(LN) $@ `basename $@ .2`
321
322
323 #
324 # 32bit/libcups.so.2
325 #
326
327 32bit/libcups.so.2: $(LIB32OBJS)
328 echo Linking 32-bit $@...
329 -mkdir 32bit
330 $(DSO) $(ARCH32FLAGS) $(DSO32FLAGS) -o $@ $(LIB32OBJS) $(LIBGSSAPI) \
331 $(DNSSDLIBS) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
332 $(RM) 32bit/libcups.so
333 $(LN) libcups.so.2 32bit/libcups.so
334
335
336 #
337 # 64bit/libcups.so.2
338 #
339
340 64bit/libcups.so.2: $(LIB64OBJS)
341 echo Linking 64-bit $@...
342 -mkdir 64bit
343 $(DSO) $(ARCH64FLAGS) $(DSO64FLAGS) -o $@ $(LIB64OBJS) $(LIBGSSAPI) \
344 $(DNSSDLIBS) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
345 $(RM) 64bit/libcups.so
346 $(LN) libcups.so.2 64bit/libcups.so
347
348
349 #
350 # libcups.2.dylib
351 #
352
353 libcups.2.dylib: $(LIBOBJS) $(LIBCUPSORDER)
354 echo Creating export list for $@...
355 nm $(LIBOBJS) 2>/dev/null | grep "T _" | awk '{print $$3}' | \
356 grep -v -e '^(_cupsConnect|_cupsCharset|_cupsEncodingName|_cupsSetDefaults|_cupsSetHTTPError|_cupsUserDefault|_httpWait)$$' | \
357 sort >t.exp
358 echo Linking $@...
359 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ \
360 -install_name $(libdir)/$@ \
361 -current_version 2.9.0 \
362 -compatibility_version 2.0.0 \
363 -exported_symbols_list t.exp \
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:9 $(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 #