]> git.ipfire.org Git - thirdparty/cups.git/blame - filter/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / filter / Makefile
CommitLineData
ef416fc2 1#
bd7854cb 2# "$Id: Makefile 5089 2006-02-08 04:05:01Z 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
29FILTERS = gziptoany hpgltops texttops pstops imagetops imagetoraster \
30 rastertolabel rastertoepson rastertohp
31TARGETS = $(FILTERS) testraster
32
33HPGLOBJS = hpgl-attr.o hpgl-config.o hpgl-main.o hpgl-prolog.o \
34 hpgl-char.o hpgl-input.o hpgl-polygon.o hpgl-vector.o
35IMAGEOBJS = image-bmp.o image-colorspace.o image-gif.o image-jpeg.o \
36 image-photocd.o image-pix.o image-png.o image-pnm.o \
37 image-sgi.o image-sgilib.o image-sun.o image-tiff.o \
38 image-zoom.o image.o interpret.o raster.o
39FORMOBJS = form-attr.o form-main.o form-ps.o form-text.o form-tree.o
40OBJS = $(HPGLOBJS) $(IMAGEOBJS) $(FORMOBJS) \
41 imagetops.o imagetoraster.o common.o pstops.o raster.o \
42 rastertolabel.o rastertoepson.o rastertohp.o \
43 texttops.o textcommon.o testraster.o gziptoany.o
44
45
46#
47# Make all targets...
48#
49
50all: $(TARGETS) $(LIBCUPSIMAGE) libcupsimage.a
51
52
53#
54# Clean all object files...
55#
56
57clean:
58 $(RM) $(OBJS) $(TARGETS) $(LIBCUPSIMAGE) libcupsimage.a
59 $(RM) `basename $(LIBCUPSIMAGE) .2` libcupsimage.dylib
60
61
62#
63# Update dependencies (without system header dependencies...)
64#
65
66depend:
67 makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
68
69
70#
71# Install all targets...
72#
73
923edb68 74install: all installhdrs $(INSTALLSTATIC)
bd7854cb 75 $(INSTALL_DIR) -m 755 $(SERVERBIN)/filter
ef416fc2 76 for file in $(FILTERS); do \
77 $(INSTALL_BIN) $$file $(SERVERBIN)/filter; \
78 done
79 $(RM) $(SERVERBIN)/filter/rastertodymo
80 $(LN) rastertolabel $(SERVERBIN)/filter/rastertodymo
923edb68 81 $(INSTALL_DIR) -m 755 $(LIBDIR)
ef416fc2 82 $(INSTALL_LIB) $(LIBCUPSIMAGE) $(LIBDIR)
83 -if test $(LIBCUPSIMAGE) = "libcupsimage.so.2" -o $(LIBCUPSIMAGE) = "libcupsimage.sl.2"; then \
84 $(RM) $(LIBDIR)/`basename $(LIBCUPSIMAGE) .2`; \
85 $(LN) $(LIBCUPSIMAGE) $(LIBDIR)/`basename $(LIBCUPSIMAGE) .2`; \
86 fi
87 -if test $(LIBCUPSIMAGE) = "libcupsimage.2.dylib"; then \
88 $(STRIP) -x $(LIBDIR)/$(LIBCUPSIMAGE); \
89 $(RM) $(LIBDIR)/libcupsimage.dylib; \
90 $(LN) $(LIBCUPSIMAGE) $(LIBDIR)/libcupsimage.dylib; \
91 fi
923edb68 92
93installstatic:
94 $(INSTALL_DIR) -m 755 $(LIBDIR)
ef416fc2 95 -if test $(LIBCUPSIMAGE) != "libcupsimage.a"; then \
96 $(INSTALL_LIB) libcupsimage.a $(LIBDIR); \
97 $(RANLIB) $(LIBDIR)/libcupsimage.a; \
98 fi
99
100installhdrs:
bd7854cb 101 $(INSTALL_DIR) -m 755 $(INCLUDEDIR)/cups
ef416fc2 102 $(INSTALL_DATA) image.h $(INCLUDEDIR)/cups
103 $(INSTALL_DATA) raster.h $(INCLUDEDIR)/cups
104
105
106#
107# formtops
108#
109
110formtops: $(FORMOBJS) common.o ../cups/$(LIBCUPS)
111 echo Linking $@...
112 $(CC) $(LDFLAGS) -o $@ $(FORMOBJS) common.o $(LIBS) -lm
113
114
115#
116# gziptoany
117#
118
119gziptoany: gziptoany.o ../Makedefs ../cups/$(LIBCUPS)
120 echo Linking $@...
121 $(CC) $(LDFLAGS) -o $@ gziptoany.o $(LIBZ) $(LIBS)
122
123
124#
125# hpgltops
126#
127
128hpgltops: $(HPGLOBJS) common.o ../cups/$(LIBCUPS)
129 echo Linking $@...
130 $(CC) $(LDFLAGS) -o $@ $(HPGLOBJS) common.o $(LIBS) -lm
131
132
133#
134# libcupsimage.so.2, libcupsimage.sl.2
135#
136
137libcupsimage.so.2 libcupsimage.sl.2: $(IMAGEOBJS)
138 echo Linking $@...
139 $(DSO) $(DSOFLAGS) -o $@ $(IMAGEOBJS) $(DSOLIBS) -lm
140 $(RM) `basename $@ .2`
141 $(LN) $@ `basename $@ .2`
142
143
144#
145# libcupsimage.2.dylib
146#
147
148libcupsimage.2.dylib: $(IMAGEOBJS)
149 echo Linking $@...
150 $(DSO) $(DSOFLAGS) -o $@ \
fa73b229 151 -install_name $(libdir)/$@ \
ef416fc2 152 -current_version 2.2.0 \
153 -compatibility_version 2.0.0 \
154 $(IMAGEOBJS) $(DSOLIBS) -L../cups $(LINKCUPS) -lm
155 $(RM) libcupsimage.dylib
156 $(LN) $@ libcupsimage.dylib
157
158
159#
160# libcupsimage_s.a
161#
162
163libcupsimage_s.a: $(IMAGEOBJS)
164 echo Linking $@...
165 $(DSO) $(DSOFLAGS) -Wl,-berok -o libcupsimage_s.o $(IMAGEOBJS) \
166 $(DSOLIBS) -lm
167 $(RM) $@
168 $(AR) $(ARFLAGS) $@ libcupsimage_s.o
169
170
171#
172# libcupsimage.la
173#
174
175libcupsimage.la: $(IMAGEOBJS)
176 echo Linking $@...
177 $(DSO) $(DSOFLAGS) -o $@ $(IMAGEOBJS:.o=.lo) $(DSOLIBS) \
178 -rpath $(LIBDIR) -version-info 2:2
179
180
181#
182# libcupsimage.a
183#
184
185libcupsimage.a: $(IMAGEOBJS)
186 echo Archiving $@...
187 $(RM) $@
188 $(AR) $(ARFLAGS) $@ $(IMAGEOBJS)
189 $(RANLIB) $@
190
191
192#
193# testimage
194#
195
196testimage: testimage.o libcupsimage.a ../Makedefs
197 echo Linking $@...
198 $(CC) $(LDFLAGS) -o $@ testimage.o libcupsimage.a \
199 $(IMGLIBS) $(DSOLIBS) $(LIBS)
200
201
202#
203# imagetops
204#
205
206imagetops: imagetops.o common.o $(LIBCUPSIMAGE) \
207 ../cups/$(LIBCUPS)
208 echo Linking $@...
209 $(CC) $(LDFLAGS) -o $@ imagetops.o common.o $(LINKCUPSIMAGE) \
210 $(IMGLIBS) $(LIBS)
211
212
213#
214# imagetoraster
215#
216
217imagetoraster: imagetoraster.o common.o $(LIBCUPSIMAGE) \
218 ../cups/$(LIBCUPS)
219 echo Linking $@...
220 $(CC) $(LDFLAGS) -o $@ imagetoraster.o common.o $(LINKCUPSIMAGE) \
221 $(IMGLIBS) $(LIBS)
222
223
224#
225# pstops
226#
227
228pstops: pstops.o common.o ../cups/$(LIBCUPS)
229 echo Linking $@...
bd7854cb 230 $(CC) $(LDFLAGS) -o $@ pstops.o common.o $(LIBS) -lm
ef416fc2 231
232
233#
234# rastertolabel
235#
236
237rastertolabel: rastertolabel.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
238 echo Linking $@...
239 $(CC) $(LDFLAGS) -o $@ rastertolabel.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
240
241
242#
243# rastertoepson
244#
245
246rastertoepson: rastertoepson.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
247 echo Linking $@...
248 $(CC) $(LDFLAGS) -o $@ rastertoepson.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
249
250
251#
252# rastertohp
253#
254
255rastertohp: rastertohp.o ../cups/$(LIBCUPS) $(LIBCUPSIMAGE)
256 echo Linking $@...
257 $(CC) $(LDFLAGS) -o $@ rastertohp.o $(LINKCUPSIMAGE) $(IMGLIBS) $(LIBS)
258
259
260#
261# testraster
262#
263
264testraster: testraster.o raster.o
265 echo Linking $@...
266 $(CC) $(LDFLAGS) -o $@ testraster.o raster.o
267
268
269#
270# texttops
271#
272
273texttops: texttops.o textcommon.o common.o \
274 ../cups/$(LIBCUPS)
275 echo Linking $@...
276 $(CC) $(LDFLAGS) -o $@ texttops.o textcommon.o common.o $(LIBS)
277
278
279#
280# Dependencies...
281#
282
283include Dependencies
284
285
286#
bd7854cb 287# End of "$Id: Makefile 5089 2006-02-08 04:05:01Z mike $".
ef416fc2 288#