]> git.ipfire.org Git - thirdparty/cups.git/blob - filter/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / filter / Makefile
1 #
2 # "$Id: Makefile 5563 2006-05-21 17:18:40Z mike $"
3 #
4 # Filter makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1997-2006 by Easy Software Products.
7 #
8 # These coded instructions, statements, and computer programs are the
9 # property of Easy Software Products and are protected by Federal
10 # copyright law. Distribution and use rights are outlined in the file
11 # "LICENSE.txt" which should have been included with this file. If this
12 # file is missing or damaged please contact Easy Software Products
13 # at:
14 #
15 # Attn: CUPS Licensing Information
16 # Easy Software Products
17 # 44141 Airport View Drive, Suite 204
18 # Hollywood, Maryland 20636 USA
19 #
20 # Voice: (301) 373-9600
21 # EMail: cups-info@cups.org
22 # WWW: http://www.cups.org
23 #
24 # This file is subject to the Apple OS-Developed Software exception.
25 #
26
27 include ../Makedefs
28
29 FILTERS = gziptoany hpgltops texttops pstops $(IMGFILTERS) \
30 rastertolabel rastertoepson rastertohp
31 TARGETS = $(FILTERS) \
32 $(LIBCUPSIMAGE) \
33 libcupsimage.a \
34 $(LIB32CUPSIMAGE) \
35 $(LIB64CUPSIMAGE) \
36 testimage \
37 testraster
38
39 HPGLOBJS = hpgl-attr.o hpgl-config.o hpgl-main.o hpgl-prolog.o \
40 hpgl-char.o hpgl-input.o hpgl-polygon.o hpgl-vector.o
41 IMAGEOBJS = image-bmp.o image-colorspace.o image-gif.o image-jpeg.o \
42 image-photocd.o image-pix.o image-png.o image-pnm.o \
43 image-sgi.o image-sgilib.o image-sun.o image-tiff.o \
44 image-zoom.o image.o interpret.o raster.o
45 IMAGE32OBJS = $(IMAGEOBJS:.o=.32.o)
46 IMAGE64OBJS = $(IMAGEOBJS:.o=.64.o)
47 FORMOBJS = form-attr.o form-main.o form-ps.o form-text.o form-tree.o
48 OBJS = $(HPGLOBJS) $(IMAGEOBJS) $(FORMOBJS) \
49 gziptoany.o imagetops.o imagetoraster.o common.o pstops.o \
50 raster.o rastertoepson.o rastertohp.o rastertolabel.o \
51 testimage.o testraster.o textcommon.o texttops.o
52
53
54 #
55 # Make all targets...
56 #
57
58 all: $(TARGETS)
59
60
61 #
62 # Clean all object files...
63 #
64
65 clean:
66 $(RM) $(OBJS) $(TARGETS)
67 $(RM) libcupsimage.so libcupsimage.sl libcupsimage.dylib
68 $(RM) -r 32bit 64bit
69
70
71 #
72 # Update dependencies (without system header dependencies...)
73 #
74
75 depend:
76 touch Dependencies.tmp
77 makedepend -Y -I.. -fDependencies.tmp $(OBJS:.o=.c) >/dev/null 2>&1
78 $(RM) Dependencies
79 cp Dependencies.tmp Dependencies
80 sed -r -e '1,$$s/^([^.]+)\.o:/\1\.32.o: \1\.c /' Dependencies.tmp >>Dependencies
81 sed -r -e '1,$$s/^([^.]+)\.o:/\1\.64.o: \1\.c /' Dependencies.tmp >>Dependencies
82 $(RM) Dependencies.tmp
83
84
85 #
86 # Install all targets...
87 #
88
89 install: all installhdrs $(INSTALLSTATIC) $(INSTALL32) $(INSTALL64)
90 $(INSTALL_DIR) -m 755 $(SERVERBIN)/filter
91 for file in $(FILTERS); do \
92 $(INSTALL_BIN) $$file $(SERVERBIN)/filter; \
93 done
94 $(RM) $(SERVERBIN)/filter/rastertodymo
95 $(LN) rastertolabel $(SERVERBIN)/filter/rastertodymo
96 $(INSTALL_DIR) -m 755 $(LIBDIR)
97 $(INSTALL_LIB) $(LIBCUPSIMAGE) $(LIBDIR)
98 -if test $(LIBCUPSIMAGE) = "libcupsimage.so.2" -o $(LIBCUPSIMAGE) = "libcupsimage.sl.2"; then \
99 $(RM) $(LIBDIR)/`basename $(LIBCUPSIMAGE) .2`; \
100 $(LN) $(LIBCUPSIMAGE) $(LIBDIR)/`basename $(LIBCUPSIMAGE) .2`; \
101 fi
102 -if test $(LIBCUPSIMAGE) = "libcupsimage.2.dylib"; then \
103 $(STRIP) -x $(LIBDIR)/$(LIBCUPSIMAGE); \
104 $(RM) $(LIBDIR)/libcupsimage.dylib; \
105 $(LN) $(LIBCUPSIMAGE) $(LIBDIR)/libcupsimage.dylib; \
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 $(LIB32DIR)/libcupsimage.so.2
122
123 install64bit:
124 $(INSTALL_DIR) -m 755 $(LIB64DIR)
125 $(INSTALL_LIB) 64bit/libcupsimage.so.2 $(LIB64DIR)/libcupsimage.so.2
126 $(LN) libcupsimage.so $(LIB64DIR)/libcupsimage.so.2
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 --intro api-raster.shtml \
172 raster.h interpret.c raster.c >../doc/help/api-raster.html
173
174
175 #
176 # formtops
177 #
178
179 formtops: $(FORMOBJS) common.o ../cups/$(LIBCUPS)
180 echo Linking $@...
181 $(CC) $(LDFLAGS) -o $@ $(FORMOBJS) common.o $(LIBS) -lm
182
183
184 #
185 # gziptoany
186 #
187
188 gziptoany: gziptoany.o ../Makedefs ../cups/$(LIBCUPS)
189 echo Linking $@...
190 $(CC) $(LDFLAGS) -o $@ gziptoany.o $(LIBZ) $(LIBS)
191
192
193 #
194 # hpgltops
195 #
196
197 hpgltops: $(HPGLOBJS) common.o ../cups/$(LIBCUPS)
198 echo Linking $@...
199 $(CC) $(LDFLAGS) -o $@ $(HPGLOBJS) common.o $(LIBS) -lm
200
201
202 #
203 # libcupsimage.so.2, libcupsimage.sl.2
204 #
205
206 libcupsimage.so.2 libcupsimage.sl.2: $(IMAGEOBJS)
207 echo Linking $@...
208 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(IMAGEOBJS) $(DSOLIBS) \
209 -L../cups $(LINKCUPS) -lm
210 $(RM) `basename $@ .2`
211 $(LN) $@ `basename $@ .2`
212
213
214 #
215 # 32bit/libcupsimage.so.2
216 #
217
218 32bit/libcupsimage.so.2: $(IMAGE32OBJS)
219 echo Linking 32-bit $@...
220 -mkdir 32bit
221 $(DSO) $(ARCH32FLAGS) $(DSO32FLAGS) -o $@ $(IMAGE32OBJS) $(DSOLIBS) \
222 -L../cups/32bit $(LINKCUPS) -lm
223
224
225 #
226 # 64bit/libcupsimage.so.2
227 #
228
229 64bit/libcupsimage.so.2: $(IMAGE64OBJS)
230 echo Linking 64-bit $@...
231 -mkdir 64bit
232 $(DSO) $(ARCH64FLAGS) $(DSO64FLAGS) -o $@ $(IMAGE64OBJS) $(DSOLIBS) \
233 -L../cups/64bit $(LINKCUPS) -lm
234
235
236 #
237 # libcupsimage.2.dylib
238 #
239
240 libcupsimage.2.dylib: $(IMAGEOBJS)
241 echo Linking $@...
242 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ \
243 -install_name $(libdir)/$@ \
244 -current_version 2.2.0 \
245 -compatibility_version 2.0.0 \
246 $(IMAGEOBJS) $(DSOLIBS) -L../cups $(LINKCUPS) -lm
247 $(RM) libcupsimage.dylib
248 $(LN) $@ libcupsimage.dylib
249
250
251 #
252 # libcupsimage_s.a
253 #
254
255 libcupsimage_s.a: $(IMAGEOBJS) libcupsimage_s.exp
256 echo Linking $@...
257 $(DSO) $(DSOFLAGS) -Wl,-berok,-bexport:libcupsimage_s.exp \
258 -o libcupsimage_s.o $(IMAGEOBJS) $(DSOLIBS) -lm
259 $(RM) $@
260 $(AR) $(ARFLAGS) $@ libcupsimage_s.o
261
262
263 #
264 # libcupsimage.la
265 #
266
267 libcupsimage.la: $(IMAGEOBJS)
268 echo Linking $@...
269 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(IMAGEOBJS:.o=.lo) $(DSOLIBS) \
270 -L../cups $(LINKCUPS) \
271 -rpath $(LIBDIR) -version-info 2:2
272
273
274 #
275 # libcupsimage.a
276 #
277
278 libcupsimage.a: $(IMAGEOBJS)
279 echo Archiving $@...
280 $(RM) $@
281 $(AR) $(ARFLAGS) $@ $(IMAGEOBJS)
282 $(RANLIB) $@
283
284
285 #
286 # testimage
287 #
288
289 testimage: testimage.o libcupsimage.a ../Makedefs
290 echo Linking $@...
291 $(CC) $(LDFLAGS) -o $@ testimage.o libcupsimage.a \
292 $(IMGLIBS) $(DSOLIBS) $(LIBS)
293
294
295 #
296 # imagetops
297 #
298
299 imagetops: imagetops.o common.o $(LIBCUPSIMAGE) \
300 ../cups/$(LIBCUPS)
301 echo Linking $@...
302 $(CC) $(LDFLAGS) -o $@ imagetops.o common.o $(LINKCUPSIMAGE) \
303 $(IMGLIBS) $(LIBS)
304
305
306 #
307 # imagetoraster
308 #
309
310 imagetoraster: imagetoraster.o common.o $(LIBCUPSIMAGE) \
311 ../cups/$(LIBCUPS)
312 echo Linking $@...
313 $(CC) $(LDFLAGS) -o $@ imagetoraster.o common.o $(LINKCUPSIMAGE) \
314 $(IMGLIBS) $(LIBS)
315
316
317 #
318 # pstops
319 #
320
321 pstops: pstops.o common.o ../cups/$(LIBCUPS)
322 echo Linking $@...
323 $(CC) $(LDFLAGS) -o $@ pstops.o common.o $(LIBS) -lm
324
325
326 #
327 # rastertolabel
328 #
329
330 rastertolabel: rastertolabel.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
331 echo Linking $@...
332 $(CC) $(LDFLAGS) -o $@ rastertolabel.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
333
334
335 #
336 # rastertoepson
337 #
338
339 rastertoepson: rastertoepson.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
340 echo Linking $@...
341 $(CC) $(LDFLAGS) -o $@ rastertoepson.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
342
343
344 #
345 # rastertohp
346 #
347
348 rastertohp: rastertohp.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
349 echo Linking $@...
350 $(CC) $(LDFLAGS) -o $@ rastertohp.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
351
352
353 #
354 # testraster
355 #
356
357 testraster: testraster.o raster.o
358 echo Linking $@...
359 $(CC) $(LDFLAGS) -o $@ testraster.o raster.o
360
361
362 #
363 # texttops
364 #
365
366 texttops: texttops.o textcommon.o common.o \
367 ../cups/$(LIBCUPS)
368 echo Linking $@...
369 $(CC) $(LDFLAGS) -o $@ texttops.o textcommon.o common.o $(LIBS)
370
371
372 #
373 # Dependencies...
374 #
375
376 include Dependencies
377
378
379 #
380 # End of "$Id: Makefile 5563 2006-05-21 17:18:40Z mike $".
381 #