]> git.ipfire.org Git - thirdparty/cups.git/blob - filter/Makefile
Merge changes from CUPS 1.4svn-r7282.
[thirdparty/cups.git] / filter / Makefile
1 #
2 # "$Id: Makefile 6696 2007-07-19 23:27:49Z mike $"
3 #
4 # Filter makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2007-2008 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 = gziptoany hpgltops texttops pstops $(IMGFILTERS) \
22 $(PDFTOPS) rastertolabel rastertoepson rastertohp
23 TARGETS = $(FILTERS) \
24 $(LIBCUPSIMAGE) \
25 libcupsimage.a \
26 $(LIB32CUPSIMAGE) \
27 $(LIB64CUPSIMAGE) \
28 rasterbench \
29 testimage \
30 testraster
31
32 HPGLOBJS = hpgl-attr.o hpgl-config.o hpgl-main.o hpgl-prolog.o \
33 hpgl-char.o hpgl-input.o hpgl-polygon.o hpgl-vector.o
34 IMAGEOBJS = image-bmp.o image-colorspace.o image-gif.o image-jpeg.o \
35 image-photocd.o image-pix.o image-png.o image-pnm.o \
36 image-sgi.o image-sgilib.o image-sun.o image-tiff.o \
37 image-zoom.o image.o error.o interpret.o raster.o
38 IMAGE32OBJS = $(IMAGEOBJS:.o=.32.o)
39 IMAGE64OBJS = $(IMAGEOBJS:.o=.64.o)
40 FORMOBJS = form-attr.o form-main.o form-ps.o form-text.o form-tree.o
41 OBJS = $(HPGLOBJS) $(IMAGEOBJS) $(FORMOBJS) \
42 gziptoany.o imagetops.o imagetoraster.o common.o \
43 pdftops.o pstops.o \
44 rasterbench.o rastertoepson.o rastertohp.o rastertolabel.o \
45 testimage.o testraster.o textcommon.o texttops.o
46
47
48 #
49 # Make all targets...
50 #
51
52 all: $(TARGETS)
53
54
55 #
56 # Clean all object files...
57 #
58
59 clean:
60 $(RM) $(OBJS) $(TARGETS)
61 $(RM) libcupsimage.so libcupsimage.sl libcupsimage.dylib
62 $(RM) -r 32bit 64bit
63
64
65 #
66 # Update dependencies (without system header dependencies...)
67 #
68
69 depend:
70 touch Dependencies.tmp
71 makedepend -Y -I.. -fDependencies.tmp $(OBJS:.o=.c) >/dev/null 2>&1
72 $(RM) Dependencies
73 cp Dependencies.tmp Dependencies
74 sed -r -e '1,$$s/^([^.]+)\.o:/\1\.32.o: \1\.c /' Dependencies.tmp >>Dependencies
75 sed -r -e '1,$$s/^([^.]+)\.o:/\1\.64.o: \1\.c /' Dependencies.tmp >>Dependencies
76 $(RM) Dependencies.tmp
77
78
79 #
80 # Install all targets...
81 #
82
83 install: all installhdrs $(INSTALLSTATIC) $(INSTALL32) $(INSTALL64)
84 $(INSTALL_DIR) -m 755 $(SERVERBIN)/filter
85 for file in $(FILTERS); do \
86 $(INSTALL_BIN) $$file $(SERVERBIN)/filter; \
87 done
88 $(RM) $(SERVERBIN)/filter/rastertodymo
89 $(LN) rastertolabel $(SERVERBIN)/filter/rastertodymo
90 $(INSTALL_DIR) -m 755 $(LIBDIR)
91 $(INSTALL_LIB) $(LIBCUPSIMAGE) $(LIBDIR)
92 -if test $(LIBCUPSIMAGE) = "libcupsimage.so.2" -o $(LIBCUPSIMAGE) = "libcupsimage.sl.2"; then \
93 $(RM) $(LIBDIR)/`basename $(LIBCUPSIMAGE) .2`; \
94 $(LN) $(LIBCUPSIMAGE) $(LIBDIR)/`basename $(LIBCUPSIMAGE) .2`; \
95 fi
96 -if test $(LIBCUPSIMAGE) = "libcupsimage.2.dylib"; then \
97 $(STRIP) -x $(LIBDIR)/$(LIBCUPSIMAGE); \
98 $(RM) $(LIBDIR)/libcupsimage.dylib; \
99 $(LN) $(LIBCUPSIMAGE) $(LIBDIR)/libcupsimage.dylib; \
100 fi
101 if test "x$(SYMROOT)" != "x"; then \
102 $(INSTALL_DIR) $(SYMROOT); \
103 for file in $(TARGETS); do \
104 cp $$file $(SYMROOT); \
105 done \
106 fi
107
108 installstatic:
109 $(INSTALL_DIR) -m 755 $(LIBDIR)
110 $(INSTALL_LIB) libcupsimage.a $(LIBDIR);
111 $(RANLIB) $(LIBDIR)/libcupsimage.a;
112
113 installhdrs:
114 $(INSTALL_DIR) -m 755 $(INCLUDEDIR)/cups
115 $(INSTALL_DATA) image.h $(INCLUDEDIR)/cups
116 $(INSTALL_DATA) raster.h $(INCLUDEDIR)/cups
117
118 install32bit:
119 $(INSTALL_DIR) -m 755 $(LIB32DIR)
120 $(INSTALL_LIB) 32bit/libcupsimage.so.2 $(LIB32DIR)/libcupsimage.so.2
121 $(LN) libcupsimage.so.2 $(LIB32DIR)/libcupsimage.so
122
123 install64bit:
124 $(INSTALL_DIR) -m 755 $(LIB64DIR)
125 $(INSTALL_LIB) 64bit/libcupsimage.so.2 $(LIB64DIR)/libcupsimage.so.2
126 $(LN) libcupsimage.so.2 $(LIB64DIR)/libcupsimage.so
127
128
129 #
130 # Uninstall all targets...
131 #
132
133 uninstall: $(UNINSTALL32) $(UNINSTALL64)
134 for file in $(FILTERS); do \
135 $(RM) $(SERVERBIN)/filter/$$file; \
136 done
137 $(RM) $(SERVERBIN)/filter/rastertodymo
138 -$(RMDIR) $(SERVERBIN)/filter
139 -$(RMDIR) $(SERVERBIN)
140 $(RM) $(LIBDIR)/libcupsimage.2.dylib
141 $(RM) $(LIBDIR)/libcupsimage.a
142 $(RM) $(LIBDIR)/libcupsimage.dylib
143 $(RM) $(LIBDIR)/libcupsimage_s.a
144 $(RM) $(LIBDIR)/libcupsimage.sl
145 $(RM) $(LIBDIR)/libcupsimage.sl.2
146 $(RM) $(LIBDIR)/libcupsimage.so
147 $(RM) $(LIBDIR)/libcupsimage.so.2
148 -$(RMDIR) $(LIBDIR)
149 $(RM) $(INCLUDEDIR)/cups/image.h
150 $(RM) $(INCLUDEDIR)/cups/raster.h
151 -$(RMDIR) $(INCLUDEDIR)/cups
152
153 uninstall32bit:
154 $(RM) $(LIB32DIR)/libcupsimage.so
155 $(RM) $(LIB32DIR)/libcupsimage.so.2
156 -$(RMDIR) $(LIB32DIR)
157
158 uninstall64bit:
159 $(RM) $(LIB64DIR)/libcupsimage.so
160 $(RM) $(LIB64DIR)/libcupsimage.so.2
161 -$(RMDIR) $(LIB64DIR)
162
163
164 #
165 # Automatic API help files...
166 #
167
168 apihelp:
169 echo Generating CUPS API help files...
170 mxmldoc --section "Programming" --title "Raster API" \
171 --css ../doc/cups-printable.css \
172 --header api-raster.header --intro api-raster.shtml \
173 raster.h interpret.c raster.c >../doc/help/api-raster.html
174
175 framedhelp:
176 echo Generating CUPS API help files...
177 mxmldoc --section "Programming" --title "Raster API" \
178 --framed ../cups/api-raster \
179 --css ../doc/cups-printable.css \
180 --header api-raster.header --intro api-raster.shtml \
181 raster.h interpret.c raster.c
182
183
184 #
185 # formtops
186 #
187
188 formtops: $(FORMOBJS) common.o ../cups/$(LIBCUPS)
189 echo Linking $@...
190 $(CC) $(LDFLAGS) -o $@ $(FORMOBJS) common.o $(LIBS) -lm
191
192
193 #
194 # gziptoany
195 #
196
197 gziptoany: gziptoany.o ../Makedefs ../cups/$(LIBCUPS)
198 echo Linking $@...
199 $(CC) $(LDFLAGS) -o $@ gziptoany.o $(LIBZ) $(LIBS)
200
201
202 #
203 # hpgltops
204 #
205
206 hpgltops: $(HPGLOBJS) common.o ../cups/$(LIBCUPS)
207 echo Linking $@...
208 $(CC) $(LDFLAGS) -o $@ $(HPGLOBJS) common.o $(LIBS) -lm
209
210
211 #
212 # libcupsimage.so.2, libcupsimage.sl.2
213 #
214
215 libcupsimage.so.2 libcupsimage.sl.2: $(IMAGEOBJS)
216 echo Linking $@...
217 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(IMAGEOBJS) $(DSOLIBS) \
218 -L../cups $(LINKCUPS) -lm
219 $(RM) `basename $@ .2`
220 $(LN) $@ `basename $@ .2`
221
222
223 #
224 # 32bit/libcupsimage.so.2
225 #
226
227 32bit/libcupsimage.so.2: $(IMAGE32OBJS)
228 echo Linking 32-bit $@...
229 -mkdir 32bit
230 $(DSO) $(ARCH32FLAGS) $(DSO32FLAGS) -o $@ $(IMAGE32OBJS) $(DSOLIBS) \
231 -L../cups/32bit $(LINKCUPS) -lm
232
233
234 #
235 # 64bit/libcupsimage.so.2
236 #
237
238 64bit/libcupsimage.so.2: $(IMAGE64OBJS)
239 echo Linking 64-bit $@...
240 -mkdir 64bit
241 $(DSO) $(ARCH64FLAGS) $(DSO64FLAGS) -o $@ $(IMAGE64OBJS) $(DSOLIBS) \
242 -L../cups/64bit $(LINKCUPS) -lm
243
244
245 #
246 # libcupsimage.2.dylib
247 #
248
249 libcupsimage.2.dylib: $(IMAGEOBJS) $(LIBCUPSIMAGEORDER)
250 echo Linking $@...
251 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ \
252 -install_name $(libdir)/$@ \
253 -current_version 2.3.0 \
254 -compatibility_version 2.0.0 \
255 -sectorder __TEXT __text $(LIBCUPSIMAGEORDER) \
256 $(IMAGEOBJS) $(DSOLIBS) -L../cups $(LINKCUPS) -lm
257 $(RM) libcupsimage.dylib
258 $(LN) $@ libcupsimage.dylib
259
260
261 #
262 # libcupsimage_s.a
263 #
264
265 libcupsimage_s.a: $(IMAGEOBJS) libcupsimage_s.exp
266 echo Linking $@...
267 $(DSO) $(DSOFLAGS) -Wl,-berok,-bexport:libcupsimage_s.exp \
268 -o libcupsimage_s.o $(IMAGEOBJS) $(DSOLIBS) -lm
269 $(RM) $@
270 $(AR) $(ARFLAGS) $@ libcupsimage_s.o
271
272
273 #
274 # libcupsimage.la
275 #
276
277 libcupsimage.la: $(IMAGEOBJS)
278 echo Linking $@...
279 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(IMAGEOBJS:.o=.lo) $(DSOLIBS) \
280 -L../cups $(LINKCUPS) \
281 -rpath $(LIBDIR) -version-info 2:3
282
283
284 #
285 # libcupsimage.a
286 #
287
288 libcupsimage.a: $(IMAGEOBJS)
289 echo Archiving $@...
290 $(RM) $@
291 $(AR) $(ARFLAGS) $@ $(IMAGEOBJS)
292 $(RANLIB) $@
293
294
295 #
296 # testimage
297 #
298
299 testimage: testimage.o libcupsimage.a ../Makedefs
300 echo Linking $@...
301 $(CC) $(LDFLAGS) -o $@ testimage.o libcupsimage.a \
302 $(IMGLIBS) $(DSOLIBS) $(LIBS)
303
304
305 #
306 # imagetops
307 #
308
309 imagetops: imagetops.o common.o $(LIBCUPSIMAGE) \
310 ../cups/$(LIBCUPS)
311 echo Linking $@...
312 $(CC) $(LDFLAGS) -o $@ imagetops.o common.o $(LINKCUPSIMAGE) \
313 $(IMGLIBS) $(LIBS)
314
315
316 #
317 # imagetoraster
318 #
319
320 imagetoraster: imagetoraster.o common.o $(LIBCUPSIMAGE) \
321 ../cups/$(LIBCUPS)
322 echo Linking $@...
323 $(CC) $(LDFLAGS) -o $@ imagetoraster.o common.o $(LINKCUPSIMAGE) \
324 $(IMGLIBS) $(LIBS)
325
326
327 #
328 # pstops
329 #
330
331 pstops: pstops.o common.o ../cups/$(LIBCUPS)
332 echo Linking $@...
333 $(CC) $(LDFLAGS) -o $@ pstops.o common.o $(LIBS) -lm
334
335
336 #
337 # pdftops
338 #
339
340 pdftops: pdftops.o common.o ../cups/$(LIBCUPS)
341 echo Linking $@...
342 $(CC) $(LDFLAGS) -o $@ pdftops.o common.o $(LIBS)
343
344
345 #
346 # rastertolabel
347 #
348
349 rastertolabel: rastertolabel.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
350 echo Linking $@...
351 $(CC) $(LDFLAGS) -o $@ rastertolabel.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
352
353
354 #
355 # rastertoepson
356 #
357
358 rastertoepson: rastertoepson.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
359 echo Linking $@...
360 $(CC) $(LDFLAGS) -o $@ rastertoepson.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
361
362
363 #
364 # rastertohp
365 #
366
367 rastertohp: rastertohp.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
368 echo Linking $@...
369 $(CC) $(LDFLAGS) -o $@ rastertohp.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
370
371
372 #
373 # testraster
374 #
375
376 testraster: testraster.o ../cups/libcups.a libcupsimage.a
377 echo Linking $@...
378 $(CC) $(LDFLAGS) -o $@ testraster.o libcupsimage.a ../cups/libcups.a \
379 $(IMGLIBS) $(DSOLIBS) $(COMMONLIBS) $(SSLLIBS) $(LIBGSSAPI)
380
381
382 #
383 # rasterbench
384 #
385
386 rasterbench: rasterbench.o libcupsimage.a
387 echo Linking $@...
388 $(CC) $(LDFLAGS) -o $@ rasterbench.o libcupsimage.a $(LIBS)
389
390
391 #
392 # texttops
393 #
394
395 texttops: texttops.o textcommon.o common.o \
396 ../cups/$(LIBCUPS)
397 echo Linking $@...
398 $(CC) $(LDFLAGS) -o $@ texttops.o textcommon.o common.o $(LIBS)
399
400
401 #
402 # Dependencies...
403 #
404
405 include Dependencies
406
407
408 #
409 # End of "$Id: Makefile 6696 2007-07-19 23:27:49Z mike $".
410 #