]> git.ipfire.org Git - thirdparty/cups.git/blob - filter/Makefile
Merge changes from CUPS 1.4svn-r8606.
[thirdparty/cups.git] / filter / Makefile
1 #
2 # "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $"
3 #
4 # Filter makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2007-2009 by Apple Inc.
7 # Copyright 1997-2006 by Easy Software Products.
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 FILTERS = \
22 $(BANNERTOPS) \
23 commandtops \
24 gziptoany \
25 hpgltops \
26 $(TEXTTOPS) \
27 pstops \
28 $(IMGFILTERS) \
29 $(PDFTOPS) \
30 rastertolabel \
31 rastertoepson \
32 rastertohp
33 LIBTARGETS = \
34 $(LIBCUPSIMAGE) \
35 libcupsimage.a \
36 $(LIB32CUPSIMAGE) \
37 $(LIB64CUPSIMAGE)
38 UNITTARGETS = \
39 rasterbench \
40 testimage \
41 testraster
42 TARGETS = \
43 $(LIBTARGETS) \
44 $(FILTERS)
45
46 HPGLOBJS = hpgl-attr.o hpgl-config.o hpgl-main.o hpgl-prolog.o \
47 hpgl-char.o hpgl-input.o hpgl-polygon.o hpgl-vector.o
48 IMAGEOBJS = image-bmp.o image-colorspace.o image-gif.o image-jpeg.o \
49 image-photocd.o image-pix.o image-png.o image-pnm.o \
50 image-sgi.o image-sgilib.o image-sun.o image-tiff.o \
51 image-zoom.o image.o error.o interpret.o raster.o
52 IMAGE32OBJS = $(IMAGEOBJS:.o=.32.o)
53 IMAGE64OBJS = $(IMAGEOBJS:.o=.64.o)
54 FORMOBJS = form-attr.o form-main.o form-ps.o form-text.o form-tree.o
55 OBJS = $(HPGLOBJS) $(IMAGEOBJS) $(FORMOBJS) \
56 bannertops.o commandtops.o gziptoany.o imagetops.o \
57 imagetoraster.o common.o pdftops.o pstext.o pstops.o \
58 rasterbench.o rastertoepson.o rastertohp.o rastertolabel.o \
59 testimage.o testraster.o textcommon.o texttops.o
60
61
62 #
63 # Make all targets...
64 #
65
66 all: $(TARGETS)
67
68
69 #
70 # Make library targets...
71 #
72
73 libs: $(LIBTARGETS)
74
75
76 #
77 # Make unit tests...
78 #
79
80 unittests: $(UNITTARGETS)
81
82
83 #
84 # Clean all object files...
85 #
86
87 clean:
88 $(RM) $(OBJS) $(TARGETS) $(UNITTARGETS)
89 $(RM) libcupsimage.so libcupsimage.sl libcupsimage.dylib
90 $(RM) -r 32bit 64bit
91
92
93 #
94 # Update dependencies (without system header dependencies...)
95 #
96
97 depend:
98 touch Dependencies.tmp
99 makedepend -Y -I.. -fDependencies.tmp $(OBJS:.o=.c) >/dev/null 2>&1
100 $(RM) Dependencies
101 cp Dependencies.tmp Dependencies
102 sed -E -e '1,$$s/^([^.]+)\.o:/\1\.32.o: \1\.c /' Dependencies.tmp >>Dependencies
103 sed -E -e '1,$$s/^([^.]+)\.o:/\1\.64.o: \1\.c /' Dependencies.tmp >>Dependencies
104 $(RM) Dependencies.tmp
105
106
107 #
108 # Install all targets...
109 #
110
111 install: all install-data install-headers install-libs install-exec
112
113
114 #
115 # Install data files...
116 #
117
118 install-data:
119
120
121 #
122 # Install programs...
123 #
124
125 install-exec:
126 $(INSTALL_DIR) -m 755 $(SERVERBIN)/filter
127 for file in $(FILTERS); do \
128 $(INSTALL_BIN) $$file $(SERVERBIN)/filter; \
129 done
130 $(RM) $(SERVERBIN)/filter/rastertodymo
131 $(LN) rastertolabel $(SERVERBIN)/filter/rastertodymo
132 if test "x$(SYMROOT)" != "x"; then \
133 $(INSTALL_DIR) $(SYMROOT); \
134 for file in $(TARGETS); do \
135 cp $$file $(SYMROOT); \
136 done \
137 fi
138
139
140 #
141 # Install headers...
142 #
143
144 install-headers:
145 $(INSTALL_DIR) -m 755 $(INCLUDEDIR)/cups
146 $(INSTALL_DATA) image.h $(INCLUDEDIR)/cups
147
148
149 #
150 # Install libraries...
151 #
152
153 install-libs: $(INSTALLSTATIC) $(INSTALL32) $(INSTALL64)
154 $(INSTALL_DIR) -m 755 $(LIBDIR)
155 $(INSTALL_LIB) $(LIBCUPSIMAGE) $(LIBDIR)
156 -if test $(LIBCUPSIMAGE) = "libcupsimage.so.2" -o $(LIBCUPSIMAGE) = "libcupsimage.sl.2"; then \
157 $(RM) $(LIBDIR)/`basename $(LIBCUPSIMAGE) .2`; \
158 $(LN) $(LIBCUPSIMAGE) $(LIBDIR)/`basename $(LIBCUPSIMAGE) .2`; \
159 fi
160 -if test $(LIBCUPSIMAGE) = "libcupsimage.2.dylib"; then \
161 $(RM) $(LIBDIR)/libcupsimage.dylib; \
162 $(LN) $(LIBCUPSIMAGE) $(LIBDIR)/libcupsimage.dylib; \
163 fi
164
165 installstatic:
166 $(INSTALL_DIR) -m 755 $(LIBDIR)
167 $(INSTALL_LIB) libcupsimage.a $(LIBDIR);
168 $(RANLIB) $(LIBDIR)/libcupsimage.a;
169
170 install32bit:
171 $(INSTALL_DIR) -m 755 $(LIB32DIR)
172 $(INSTALL_LIB) 32bit/libcupsimage.so.2 $(LIB32DIR)/libcupsimage.so.2
173 $(LN) libcupsimage.so.2 $(LIB32DIR)/libcupsimage.so
174
175 install64bit:
176 $(INSTALL_DIR) -m 755 $(LIB64DIR)
177 $(INSTALL_LIB) 64bit/libcupsimage.so.2 $(LIB64DIR)/libcupsimage.so.2
178 $(LN) libcupsimage.so.2 $(LIB64DIR)/libcupsimage.so
179
180
181 #
182 # Uninstall all targets...
183 #
184
185 uninstall: $(UNINSTALL32) $(UNINSTALL64)
186 for file in $(FILTERS); do \
187 $(RM) $(SERVERBIN)/filter/$$file; \
188 done
189 $(RM) $(SERVERBIN)/filter/rastertodymo
190 -$(RMDIR) $(SERVERBIN)/filter
191 -$(RMDIR) $(SERVERBIN)
192 $(RM) $(LIBDIR)/libcupsimage.2.dylib
193 $(RM) $(LIBDIR)/libcupsimage.a
194 $(RM) $(LIBDIR)/libcupsimage.dylib
195 $(RM) $(LIBDIR)/libcupsimage_s.a
196 $(RM) $(LIBDIR)/libcupsimage.sl
197 $(RM) $(LIBDIR)/libcupsimage.sl.2
198 $(RM) $(LIBDIR)/libcupsimage.so
199 $(RM) $(LIBDIR)/libcupsimage.so.2
200 -$(RMDIR) $(LIBDIR)
201 $(RM) $(INCLUDEDIR)/cups/image.h
202 -$(RMDIR) $(INCLUDEDIR)/cups
203
204 uninstall32bit:
205 $(RM) $(LIB32DIR)/libcupsimage.so
206 $(RM) $(LIB32DIR)/libcupsimage.so.2
207 -$(RMDIR) $(LIB32DIR)
208
209 uninstall64bit:
210 $(RM) $(LIB64DIR)/libcupsimage.so
211 $(RM) $(LIB64DIR)/libcupsimage.so.2
212 -$(RMDIR) $(LIB64DIR)
213
214
215 #
216 # Automatic API help files...
217 #
218
219 apihelp:
220 echo Generating CUPS API help files...
221 mxmldoc --section "Programming" --title "Raster API" \
222 --css ../doc/cups-printable.css \
223 --header api-raster.header --intro api-raster.shtml \
224 api-raster.xml \
225 ../cups/raster.h interpret.c raster.c \
226 >../doc/help/api-raster.html
227 mxmldoc --tokens help/api-raster.html api-raster.xml >../doc/help/api-raster.tokens
228 $(RM) api-raster.xml
229 mxmldoc --section "Programming" \
230 --title "Developing PostScript Printer Drivers" \
231 --css ../doc/cups-printable.css \
232 --header postscript-driver.header \
233 --intro postscript-driver.shtml \
234 >../doc/help/postscript-driver.html
235 mxmldoc --section "Programming" \
236 --title "Introduction to the PPD Compiler" \
237 --css ../doc/cups-printable.css \
238 --header ppd-compiler.header \
239 --intro ppd-compiler.shtml \
240 >../doc/help/ppd-compiler.html
241 mxmldoc --section "Programming" \
242 --title "Developing Raster Printer Drivers" \
243 --css ../doc/cups-printable.css \
244 --header raster-driver.header \
245 --intro raster-driver.shtml \
246 >../doc/help/raster-driver.html
247
248 framedhelp:
249 echo Generating CUPS API help files...
250 mxmldoc --section "Programming" --title "Raster API" \
251 --framed ../cups/api-raster \
252 --css ../doc/cups-printable.css \
253 --header api-raster.header --intro api-raster.shtml \
254 ../cups/raster.h interpret.c raster.c
255 mxmldoc --section "Programming" \
256 --title "Developing PostScript Printer Drivers" \
257 --framed ../cups/postscript-driver \
258 --css ../doc/cups-printable.css \
259 --header postscript-driver.header \
260 --intro postscript-driver.shtml
261 mxmldoc --section "Programming" \
262 --title "Introduction to the PPD Compiler" \
263 --framed ../cups/ppd-compiler \
264 --css ../doc/cups-printable.css \
265 --header ppd-compiler.header \
266 --intro ppd-compiler.shtml
267 mxmldoc --section "Programming" \
268 --title "Developing Raster Printer Drivers" \
269 --framed ../cups/raster-driver \
270 --css ../doc/cups-printable.css \
271 --header raster-driver.header \
272 --intro raster-driver.shtml
273
274
275 #
276 # bannertops
277 #
278
279 bannertops: bannertops.o pstext.o common.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
280 echo Linking $@...
281 $(CC) $(LDFLAGS) -o $@ bannertops.o pstext.o common.o $(LINKCUPSIMAGE) \
282 $(IMGLIBS) $(LIBS)
283
284
285 #
286 # commandtops
287 #
288
289 commandtops: commandtops.o ../cups/$(LIBCUPS)
290 echo Linking $@...
291 $(CC) $(LDFLAGS) -o $@ commandtops.o $(LIBS)
292
293
294 #
295 # formtops
296 #
297
298 formtops: $(FORMOBJS) common.o ../cups/$(LIBCUPS)
299 echo Linking $@...
300 $(CC) $(LDFLAGS) -o $@ $(FORMOBJS) common.o $(LIBS) -lm
301
302
303 #
304 # gziptoany
305 #
306
307 gziptoany: gziptoany.o ../Makedefs ../cups/$(LIBCUPS)
308 echo Linking $@...
309 $(CC) $(LDFLAGS) -o $@ gziptoany.o $(LIBZ) $(LIBS)
310
311
312 #
313 # hpgltops
314 #
315
316 hpgltops: $(HPGLOBJS) common.o ../cups/$(LIBCUPS)
317 echo Linking $@...
318 $(CC) $(LDFLAGS) -o $@ $(HPGLOBJS) common.o $(LIBS) -lm
319
320
321 #
322 # libcupsimage.so.2, libcupsimage.sl.2
323 #
324
325 libcupsimage.so.2 libcupsimage.sl.2: $(IMAGEOBJS)
326 echo Linking $@...
327 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(IMAGEOBJS) $(DSOLIBS) \
328 -L../cups $(LINKCUPS) -lm
329 $(RM) `basename $@ .2`
330 $(LN) $@ `basename $@ .2`
331
332
333 #
334 # 32bit/libcupsimage.so.2
335 #
336
337 32bit/libcupsimage.so.2: $(IMAGE32OBJS)
338 echo Linking 32-bit $@...
339 -mkdir 32bit
340 $(DSO) $(ARCH32FLAGS) $(DSO32FLAGS) -o $@ $(IMAGE32OBJS) $(DSOLIBS) \
341 -L../cups/32bit $(LINKCUPS) -lm
342
343
344 #
345 # 64bit/libcupsimage.so.2
346 #
347
348 64bit/libcupsimage.so.2: $(IMAGE64OBJS)
349 echo Linking 64-bit $@...
350 -mkdir 64bit
351 $(DSO) $(ARCH64FLAGS) $(DSO64FLAGS) -o $@ $(IMAGE64OBJS) $(DSOLIBS) \
352 -L../cups/64bit $(LINKCUPS) -lm
353
354
355 #
356 # libcupsimage.2.dylib
357 #
358
359 libcupsimage.2.dylib: $(IMAGEOBJS) $(LIBCUPSIMAGEORDER)
360 echo Linking $@...
361 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ \
362 -install_name $(libdir)/$@ \
363 -current_version 2.3.0 \
364 -compatibility_version 2.0.0 \
365 -sectorder __TEXT __text $(LIBCUPSIMAGEORDER) \
366 $(IMAGEOBJS) $(DSOLIBS) -L../cups $(LINKCUPS) -lm
367 $(RM) libcupsimage.dylib
368 $(LN) $@ libcupsimage.dylib
369
370
371 #
372 # libcupsimage_s.a
373 #
374
375 libcupsimage_s.a: $(IMAGEOBJS) libcupsimage_s.exp
376 echo Linking $@...
377 $(DSO) $(DSOFLAGS) -Wl,-berok,-bexport:libcupsimage_s.exp \
378 -o libcupsimage_s.o $(IMAGEOBJS) $(DSOLIBS) -lm
379 $(RM) $@
380 $(AR) $(ARFLAGS) $@ libcupsimage_s.o
381
382
383 #
384 # libcupsimage.la
385 #
386
387 libcupsimage.la: $(IMAGEOBJS)
388 echo Linking $@...
389 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(IMAGEOBJS:.o=.lo) $(DSOLIBS) \
390 -L../cups $(LINKCUPS) \
391 -rpath $(LIBDIR) -version-info 2:3
392
393
394 #
395 # libcupsimage.a
396 #
397
398 libcupsimage.a: $(IMAGEOBJS)
399 echo Archiving $@...
400 $(RM) $@
401 $(AR) $(ARFLAGS) $@ $(IMAGEOBJS)
402 $(RANLIB) $@
403
404
405 #
406 # testimage
407 #
408
409 testimage: testimage.o libcupsimage.a ../Makedefs
410 echo Linking $@...
411 $(CC) $(LDFLAGS) -o $@ testimage.o libcupsimage.a \
412 $(IMGLIBS) $(DSOLIBS) $(LIBS)
413
414
415 #
416 # imagetops
417 #
418
419 imagetops: imagetops.o common.o $(LIBCUPSIMAGE) \
420 ../cups/$(LIBCUPS)
421 echo Linking $@...
422 $(CC) $(LDFLAGS) -o $@ imagetops.o common.o $(LINKCUPSIMAGE) \
423 $(IMGLIBS) $(LIBS)
424
425
426 #
427 # imagetoraster
428 #
429
430 imagetoraster: imagetoraster.o common.o $(LIBCUPSIMAGE) \
431 ../cups/$(LIBCUPS)
432 echo Linking $@...
433 $(CC) $(LDFLAGS) -o $@ imagetoraster.o common.o $(LINKCUPSIMAGE) \
434 $(IMGLIBS) $(LIBS)
435
436
437 #
438 # pstops
439 #
440
441 pstops: pstops.o common.o ../cups/$(LIBCUPS)
442 echo Linking $@...
443 $(CC) $(LDFLAGS) -o $@ pstops.o common.o $(LIBS) -lm
444
445
446 #
447 # pdftops
448 #
449
450 pdftops: pdftops.o common.o ../cups/$(LIBCUPS)
451 echo Linking $@...
452 $(CC) $(LDFLAGS) -o $@ pdftops.o common.o $(LIBS)
453
454
455 #
456 # rastertolabel
457 #
458
459 rastertolabel: rastertolabel.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
460 echo Linking $@...
461 $(CC) $(LDFLAGS) -o $@ rastertolabel.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
462
463
464 #
465 # rastertoepson
466 #
467
468 rastertoepson: rastertoepson.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
469 echo Linking $@...
470 $(CC) $(LDFLAGS) -o $@ rastertoepson.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
471
472
473 #
474 # rastertohp
475 #
476
477 rastertohp: rastertohp.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
478 echo Linking $@...
479 $(CC) $(LDFLAGS) -o $@ rastertohp.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
480
481
482 #
483 # testraster
484 #
485
486 testraster: testraster.o ../cups/libcups.a libcupsimage.a
487 echo Linking $@...
488 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testraster.o libcupsimage.a \
489 ../cups/libcups.a $(IMGLIBS) $(DSOLIBS) $(COMMONLIBS) \
490 $(SSLLIBS) $(DNSSDLIBS) $(LIBGSSAPI)
491 echo Running raster API tests...
492 ./testraster
493
494
495 #
496 # rasterbench
497 #
498
499 rasterbench: rasterbench.o libcupsimage.a
500 echo Linking $@...
501 $(CC) $(LDFLAGS) -o $@ rasterbench.o libcupsimage.a $(LIBS)
502
503
504 #
505 # texttops
506 #
507
508 texttops: texttops.o textcommon.o common.o \
509 ../cups/$(LIBCUPS)
510 echo Linking $@...
511 $(CC) $(LDFLAGS) -o $@ texttops.o textcommon.o common.o $(LIBS)
512
513
514 #
515 # Dependencies...
516 #
517
518 include Dependencies
519
520
521 #
522 # End of "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $".
523 #