]> git.ipfire.org Git - thirdparty/cups.git/blame - filter/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / filter / Makefile
CommitLineData
ef416fc2 1#
d6ae789d 2# "$Id: Makefile 5354 2006-03-29 20:55:15Z mike $"
ef416fc2 3#
4# Filter makefile for the Common UNIX Printing System (CUPS).
5#
bd7854cb 6# Copyright 1997-2006 by Easy Software Products.
ef416fc2 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
27include ../Makedefs
28
e1d6a774 29FILTERS = gziptoany hpgltops texttops pstops $(IMGFILTERS) \
ef416fc2 30 rastertolabel rastertoepson rastertohp
e1d6a774 31TARGETS = $(FILTERS) \
32 $(LIBCUPSIMAGE) \
33 libcupsimage.a \
34 $(LIB32CUPSIMAGE) \
35 $(LIB64CUPSIMAGE) \
36 testimage \
37 testraster
ef416fc2 38
39HPGLOBJS = 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
41IMAGEOBJS = 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
e1d6a774 45IMAGE32OBJS = $(IMAGEOBJS:.o=.32.o)
46IMAGE64OBJS = $(IMAGEOBJS:.o=.64.o)
ef416fc2 47FORMOBJS = form-attr.o form-main.o form-ps.o form-text.o form-tree.o
48OBJS = $(HPGLOBJS) $(IMAGEOBJS) $(FORMOBJS) \
e1d6a774 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
ef416fc2 52
53
54#
55# Make all targets...
56#
57
e1d6a774 58all: $(TARGETS)
ef416fc2 59
60
61#
62# Clean all object files...
63#
64
65clean:
e1d6a774 66 $(RM) $(OBJS) $(TARGETS)
67 $(RM) libcupsimage.so libcupsimage.sl libcupsimage.dylib
68 $(RM) libcupsimage.32.so libcupsimage.64.so
ef416fc2 69
70
71#
72# Update dependencies (without system header dependencies...)
73#
74
75depend:
e1d6a774 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
ef416fc2 83
84
85#
86# Install all targets...
87#
88
e1d6a774 89install: all installhdrs $(INSTALLSTATIC) $(INSTALL32) $(INSTALL64)
bd7854cb 90 $(INSTALL_DIR) -m 755 $(SERVERBIN)/filter
ef416fc2 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
923edb68 96 $(INSTALL_DIR) -m 755 $(LIBDIR)
ef416fc2 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
923edb68 107
108installstatic:
109 $(INSTALL_DIR) -m 755 $(LIBDIR)
d6ae789d 110 $(INSTALL_LIB) libcupsimage.a $(LIBDIR);
111 $(RANLIB) $(LIBDIR)/libcupsimage.a;
ef416fc2 112
113installhdrs:
bd7854cb 114 $(INSTALL_DIR) -m 755 $(INCLUDEDIR)/cups
ef416fc2 115 $(INSTALL_DATA) image.h $(INCLUDEDIR)/cups
116 $(INSTALL_DATA) raster.h $(INCLUDEDIR)/cups
117
e1d6a774 118install32bit:
119 $(INSTALL_DIR) -m 755 $(LIB32DIR)
120 $(INSTALL_LIB) libcupsimage.32.so.2 $(LIB32DIR)/libcupsimage.so.2
121 $(LN) libcupsimage.so $(LIB32DIR)/libcupsimage.so.2
122
123install64bit:
124 $(INSTALL_DIR) -m 755 $(LIB64DIR)
125 $(INSTALL_LIB) libcupsimage.64.so.2 $(LIB64DIR)/libcupsimage.so.2
126 $(LN) libcupsimage.so $(LIB64DIR)/libcupsimage.so.2
127
ef416fc2 128
757d2cad 129#
130# Uninstall all targets...
131#
132
e1d6a774 133uninstall: $(UNINSTALL32) $(UNINSTALL64)
757d2cad 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
e1d6a774 153uninstall32bit:
154 $(RM) $(LIB32DIR)/libcupsimage.so
155 $(RM) $(LIB32DIR)/libcupsimage.so.2
156 -$(RMDIR) $(LIB32DIR)
157
158uninstall64bit:
159 $(RM) $(LIB64DIR)/libcupsimage.so
160 $(RM) $(LIB64DIR)/libcupsimage.so.2
161 -$(RMDIR) $(LIB64DIR)
162
757d2cad 163
b423cd4c 164#
165# Automatic API help files...
166#
167
168apihelp:
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
ef416fc2 175#
176# formtops
177#
178
179formtops: $(FORMOBJS) common.o ../cups/$(LIBCUPS)
180 echo Linking $@...
181 $(CC) $(LDFLAGS) -o $@ $(FORMOBJS) common.o $(LIBS) -lm
182
183
184#
185# gziptoany
186#
187
188gziptoany: gziptoany.o ../Makedefs ../cups/$(LIBCUPS)
189 echo Linking $@...
190 $(CC) $(LDFLAGS) -o $@ gziptoany.o $(LIBZ) $(LIBS)
191
192
193#
194# hpgltops
195#
196
197hpgltops: $(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
206libcupsimage.so.2 libcupsimage.sl.2: $(IMAGEOBJS)
207 echo Linking $@...
e1d6a774 208 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(IMAGEOBJS) $(DSOLIBS) -lm
ef416fc2 209 $(RM) `basename $@ .2`
210 $(LN) $@ `basename $@ .2`
211
212
e1d6a774 213#
214# libcupsimage.32.so.2
215#
216
217libcupsimage.32.so.2: $(IMAGE32OBJS)
218 echo Linking 32-bit $@...
219 $(DSO) $(ARCH32FLAGS) $(DSOFLAGS) -o $@ $(IMAGE32OBJS) $(DSOLIBS) -lm
220
221
222#
223# libcupsimage.64.so.2
224#
225
226libcupsimage.64.so.2: $(IMAGE64OBJS)
227 echo Linking 64-bit $@...
228 $(DSO) $(ARCH64FLAGS) $(DSOFLAGS) -o $@ $(IMAGE64OBJS) $(DSOLIBS) -lm
229
230
ef416fc2 231#
232# libcupsimage.2.dylib
233#
234
235libcupsimage.2.dylib: $(IMAGEOBJS)
236 echo Linking $@...
e1d6a774 237 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ \
fa73b229 238 -install_name $(libdir)/$@ \
ef416fc2 239 -current_version 2.2.0 \
240 -compatibility_version 2.0.0 \
241 $(IMAGEOBJS) $(DSOLIBS) -L../cups $(LINKCUPS) -lm
242 $(RM) libcupsimage.dylib
243 $(LN) $@ libcupsimage.dylib
244
245
246#
247# libcupsimage_s.a
248#
249
250libcupsimage_s.a: $(IMAGEOBJS)
251 echo Linking $@...
e1d6a774 252 $(DSO) $(DSOFLAGS) -Wl,-berok,-bexport:libcupsimage_s.exp \
253 -o libcupsimage_s.o $(IMAGEOBJS) $(DSOLIBS) -lm
ef416fc2 254 $(RM) $@
255 $(AR) $(ARFLAGS) $@ libcupsimage_s.o
256
257
258#
259# libcupsimage.la
260#
261
262libcupsimage.la: $(IMAGEOBJS)
263 echo Linking $@...
e1d6a774 264 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(IMAGEOBJS:.o=.lo) $(DSOLIBS) \
ef416fc2 265 -rpath $(LIBDIR) -version-info 2:2
266
267
268#
269# libcupsimage.a
270#
271
272libcupsimage.a: $(IMAGEOBJS)
273 echo Archiving $@...
274 $(RM) $@
275 $(AR) $(ARFLAGS) $@ $(IMAGEOBJS)
276 $(RANLIB) $@
277
278
279#
280# testimage
281#
282
283testimage: testimage.o libcupsimage.a ../Makedefs
284 echo Linking $@...
285 $(CC) $(LDFLAGS) -o $@ testimage.o libcupsimage.a \
286 $(IMGLIBS) $(DSOLIBS) $(LIBS)
287
288
289#
290# imagetops
291#
292
293imagetops: imagetops.o common.o $(LIBCUPSIMAGE) \
294 ../cups/$(LIBCUPS)
295 echo Linking $@...
296 $(CC) $(LDFLAGS) -o $@ imagetops.o common.o $(LINKCUPSIMAGE) \
297 $(IMGLIBS) $(LIBS)
298
299
300#
301# imagetoraster
302#
303
304imagetoraster: imagetoraster.o common.o $(LIBCUPSIMAGE) \
305 ../cups/$(LIBCUPS)
306 echo Linking $@...
307 $(CC) $(LDFLAGS) -o $@ imagetoraster.o common.o $(LINKCUPSIMAGE) \
308 $(IMGLIBS) $(LIBS)
309
310
311#
312# pstops
313#
314
315pstops: pstops.o common.o ../cups/$(LIBCUPS)
316 echo Linking $@...
bd7854cb 317 $(CC) $(LDFLAGS) -o $@ pstops.o common.o $(LIBS) -lm
ef416fc2 318
319
320#
321# rastertolabel
322#
323
324rastertolabel: rastertolabel.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
325 echo Linking $@...
326 $(CC) $(LDFLAGS) -o $@ rastertolabel.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
327
328
329#
330# rastertoepson
331#
332
333rastertoepson: rastertoepson.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
334 echo Linking $@...
335 $(CC) $(LDFLAGS) -o $@ rastertoepson.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
336
337
338#
339# rastertohp
340#
341
342rastertohp: rastertohp.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
343 echo Linking $@...
344 $(CC) $(LDFLAGS) -o $@ rastertohp.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
345
346
347#
348# testraster
349#
350
351testraster: testraster.o raster.o
352 echo Linking $@...
353 $(CC) $(LDFLAGS) -o $@ testraster.o raster.o
354
355
356#
357# texttops
358#
359
360texttops: texttops.o textcommon.o common.o \
361 ../cups/$(LIBCUPS)
362 echo Linking $@...
363 $(CC) $(LDFLAGS) -o $@ texttops.o textcommon.o common.o $(LIBS)
364
365
366#
367# Dependencies...
368#
369
370include Dependencies
371
372
373#
d6ae789d 374# End of "$Id: Makefile 5354 2006-03-29 20:55:15Z mike $".
ef416fc2 375#