]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / cups / Makefile
1 #
2 # "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
3 #
4 # API library Makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2007 by Apple Inc.
7 # Copyright 1997-2006 by Easy Software Products, all rights reserved.
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 # Object files...
22 #
23
24 LIBOBJS = \
25 adminutil.o \
26 array.o \
27 attr.o \
28 auth.o \
29 backchannel.o \
30 backend.o \
31 custom.o \
32 dest.o \
33 dir.o \
34 emit.o \
35 encode.o \
36 file.o \
37 getifaddrs.o \
38 getputfile.o \
39 globals.o \
40 http.o \
41 http-addr.o \
42 http-addrlist.o \
43 http-support.o \
44 ipp.o \
45 ipp-support.o \
46 langprintf.o \
47 language.o \
48 localize.o \
49 mark.o \
50 md5.o \
51 md5passwd.o \
52 notify.o \
53 options.o \
54 page.o \
55 ppd.o \
56 request.o \
57 sidechannel.o \
58 snprintf.o \
59 string.o \
60 tempfile.o \
61 transcode.o \
62 usersys.o \
63 util.o
64 LIB32OBJS = $(LIBOBJS:.o=.32.o)
65 LIB64OBJS = $(LIBOBJS:.o=.64.o)
66 OBJS = \
67 $(LIBOBJS) \
68 $(LIB32OBJS) \
69 $(LIB64OBJS) \
70 testadmin.o \
71 testarray.o \
72 testcups.o \
73 testfile.o \
74 testhttp.o \
75 testi18n.o \
76 testipp.o \
77 testlang.o \
78 testppd.o \
79 php_cups_wrap.o
80
81
82 #
83 # Header files to install...
84 #
85
86 HEADERS = \
87 adminutil.h \
88 array.h \
89 backend.h \
90 cups.h \
91 dir.h \
92 file.h \
93 http.h \
94 i18n.h \
95 ipp.h \
96 language.h \
97 ppd.h \
98 sidechannel.h \
99 transcode.h
100
101
102 #
103 # Targets in this directory...
104 #
105
106 TARGETS = \
107 $(LIBCUPS) \
108 $(LIB32CUPS) \
109 $(LIB64CUPS) \
110 libcups.a \
111 testadmin \
112 testarray \
113 testcups \
114 testfile \
115 testhttp \
116 testi18n \
117 testipp \
118 testlang \
119 testppd
120
121
122 #
123 # Make all targets...
124 #
125
126 all: $(TARGETS)
127
128
129 #
130 # Remove object and target files...
131 #
132
133 clean:
134 $(RM) $(OBJS) $(TARGETS)
135 $(RM) libcups.so libcups.sl libcups.dylib
136 $(RM) -r 32bit 64bit
137
138
139 #
140 # Update dependencies (without system header dependencies...)
141 #
142
143 depend:
144 touch Dependencies.tmp
145 makedepend -Y -I.. -fDependencies.tmp $(OBJS:.o=.c) >/dev/null 2>&1
146 $(RM) Dependencies
147 cp Dependencies.tmp Dependencies
148 sed -r -e '1,$$s/^([^.]+)\.o:/\1\.32.o: \1\.c /' Dependencies.tmp >>Dependencies
149 sed -r -e '1,$$s/^([^.]+)\.o:/\1\.64.o: \1\.c /' Dependencies.tmp >>Dependencies
150 $(RM) Dependencies.tmp
151
152
153 #
154 # Install object and target files...
155 #
156
157 install: all installhdrs $(INSTALLSTATIC) $(INSTALL32) $(INSTALL64)
158 $(INSTALL_DIR) -m 755 $(LIBDIR)
159 $(INSTALL_LIB) $(LIBCUPS) $(LIBDIR)
160 if test $(LIBCUPS) = "libcups.so.2" -o $(LIBCUPS) = "libcups.sl.2"; then \
161 $(RM) $(LIBDIR)/`basename $(LIBCUPS) .2`; \
162 $(LN) $(LIBCUPS) $(LIBDIR)/`basename $(LIBCUPS) .2`; \
163 fi
164 if test $(LIBCUPS) = "libcups.2.dylib"; then \
165 $(STRIP) -x $(LIBDIR)/$(LIBCUPS); \
166 $(RM) $(LIBDIR)/libcups.dylib; \
167 $(LN) $(LIBCUPS) $(LIBDIR)/libcups.dylib; \
168 fi
169 if test "x$(SYMROOT)" != "x"; then \
170 $(INSTALL_DIR) $(SYMROOT); \
171 for file in $(TARGETS); do \
172 cp $$file $(SYMROOT); \
173 done \
174 fi
175
176 installstatic:
177 $(INSTALL_DIR) -m 755 $(LIBDIR)
178 $(INSTALL_LIB) libcups.a $(LIBDIR)
179 $(RANLIB) $(LIBDIR)/libcups.a
180
181 installhdrs:
182 $(INSTALL_DIR) -m 755 $(INCLUDEDIR)/cups
183 for file in $(HEADERS); do \
184 $(INSTALL_DATA) $$file $(INCLUDEDIR)/cups; \
185 done
186
187 install32bit:
188 $(INSTALL_DIR) -m 755 $(LIB32DIR)
189 $(INSTALL_LIB) 32bit/libcups.so.2 $(LIB32DIR)/libcups.so.2
190 $(LN) libcups.so.2 $(LIB32DIR)/libcups.so
191
192 install64bit:
193 $(INSTALL_DIR) -m 755 $(LIB64DIR)
194 $(INSTALL_LIB) 64bit/libcups.so.2 $(LIB64DIR)/libcups.so.2
195 $(LN) libcups.so.2 $(LIB64DIR)/libcups.so
196
197
198 #
199 # Uninstall object and target files...
200 #
201
202 uninstall: $(UNINSTALL32) $(UNINSTALL64)
203 $(RM) $(LIBDIR)/libcups.2.dylib
204 $(RM) $(LIBDIR)/libcups.a
205 $(RM) $(LIBDIR)/libcups.dylib
206 $(RM) $(LIBDIR)/libcups_s.a
207 $(RM) $(LIBDIR)/libcups.sl
208 $(RM) $(LIBDIR)/libcups.sl.2
209 $(RM) $(LIBDIR)/libcups.so
210 $(RM) $(LIBDIR)/libcups.so.2
211 -$(RMDIR) $(LIBDIR)
212 for file in $(HEADERS); do \
213 $(RM) $(INCLUDEDIR)/cups/$$file; \
214 done
215 -$(RMDIR) $(INCLUDEDIR)/cups
216
217 uninstall32bit:
218 $(RM) $(LIB32DIR)/libcups.so
219 $(RM) $(LIB32DIR)/libcups.so.2
220 -$(RMDIR) $(LIB32DIR)
221
222 uninstall64bit:
223 $(RM) $(LIB64DIR)/libcups.so
224 $(RM) $(LIB64DIR)/libcups.so.2
225 -$(RMDIR) $(LIB64DIR)
226
227
228 #
229 # libcups.so.2, libcups.sl.2
230 #
231
232 libcups.so.2 libcups.sl.2: $(LIBOBJS)
233 echo Linking $@...
234 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(LIBOBJS) $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
235 $(RM) `basename $@ .2`
236 $(LN) $@ `basename $@ .2`
237
238
239 #
240 # 32bit/libcups.so.2
241 #
242
243 32bit/libcups.so.2: $(LIB32OBJS)
244 echo Linking 32-bit $@...
245 -mkdir 32bit
246 $(DSO) $(ARCH32FLAGS) $(DSO32FLAGS) -o $@ $(LIB32OBJS) $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
247 $(RM) 32bit/libcups.so
248 $(LN) libcups.so.2 32bit/libcups.so
249
250
251 #
252 # 64bit/libcups.so.2
253 #
254
255 64bit/libcups.so.2: $(LIB64OBJS)
256 echo Linking 64-bit $@...
257 -mkdir 64bit
258 $(DSO) $(ARCH64FLAGS) $(DSO64FLAGS) -o $@ $(LIB64OBJS) $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
259 $(RM) 64bit/libcups.so
260 $(LN) libcups.so.2 64bit/libcups.so
261
262
263 #
264 # libcups.2.dylib
265 #
266
267 libcups.2.dylib: $(LIBOBJS) $(LIBCUPSORDER)
268 echo Linking $@...
269 $(DSO) $(ARCHFLAGS) $(DSOFLAGS) -o $@ \
270 -install_name $(libdir)/$@ \
271 -current_version 2.8.0 \
272 -compatibility_version 2.0.0 \
273 -exported_symbols_list libcups.exp \
274 -sectorder __TEXT __text $(LIBCUPSORDER) \
275 $(LIBOBJS) $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
276 $(RM) libcups.dylib
277 $(LN) $@ libcups.dylib
278
279
280 #
281 # libcups_s.a
282 #
283
284 libcups_s.a: $(LIBOBJS) libcups_s.exp
285 echo Creating $@...
286 $(DSO) $(DSOFLAGS) -Wl,-bexport:libcups_s.exp -o libcups_s.o $(LIBOBJS) $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ) -lm
287 $(RM) $@
288 $(AR) $(ARFLAGS) $@ libcups_s.o
289
290
291 #
292 # libcups.la
293 #
294
295 libcups.la: $(LIBOBJS)
296 echo Linking $@...
297 $(CC) $(ARCHFLAGS) $(DSOFLAGS) -o $@ $(LIBOBJS:.o=.lo) -rpath $(LIBDIR) \
298 -version-info 2:8 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
299
300
301 #
302 # libcups.a
303 #
304
305 libcups.a: $(LIBOBJS)
306 echo Archiving $@...
307 $(RM) $@
308 $(AR) $(ARFLAGS) $@ $(LIBOBJS)
309 $(RANLIB) $@
310
311
312 #
313 # CUPS language bindings for various scripting languages...
314 #
315 # NOTE: Not currently used or functional - see the scripting/php directory
316 # for the hand-written bindings...
317 #
318
319 phpcups.so: $(LIBCUPS) php_cups_wrap.o
320 echo Linking $@...
321 if test `uname` = Darwin; then \
322 DSOFLAGS="-bundle -flat_namespace -undefined suppress"; \
323 else \
324 DSOFLAGS="$(DSOFLAGS)"; \
325 fi; \
326 $(DSO) $$DSOFLAGS -o $@ php_cups_wrap.o $(LIBS) `php-config --ldflags --libs`
327
328 php_cups_wrap.o: php_cups_wrap.c
329 echo Compiling $<...
330 $(CC) $(CFLAGS) `php-config --includes` -c $<
331 php_cups_wrap.c: cups.h
332 echo Creating $< using SWIG...
333 swig -php -o $@ -module cups cups.h
334
335
336 #
337 # testadmin (dependency on static CUPS library is intentional)
338 #
339
340 testadmin: testadmin.o libcups.a
341 echo Linking $@...
342 $(CC) $(LDFLAGS) -o $@ testadmin.o libcups.a \
343 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
344
345
346 #
347 # testarray (dependency on static CUPS library is intentional)
348 #
349
350 testarray: testarray.o libcups.a
351 echo Linking $@...
352 $(CC) $(LDFLAGS) -o $@ testarray.o libcups.a \
353 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
354
355
356 #
357 # testcups (dependency on static CUPS library is intentional)
358 #
359
360 testcups: testcups.o libcups.a
361 echo Linking $@...
362 $(CC) $(LDFLAGS) -o $@ testcups.o libcups.a \
363 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
364
365
366 #
367 # testfile (dependency on static CUPS library is intentional)
368 #
369
370 testfile: testfile.o libcups.a
371 echo Linking $@...
372 $(CC) $(LDFLAGS) -o $@ testfile.o libcups.a \
373 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
374
375
376 #
377 # testhttp (dependency on static CUPS library is intentional)
378 #
379
380 testhttp: testhttp.o libcups.a
381 echo Linking $@...
382 $(CC) $(LDFLAGS) -o $@ testhttp.o libcups.a \
383 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
384
385
386 #
387 # testipp (dependency on static CUPS library is intentional)
388 #
389
390 testipp: testipp.o libcups.a
391 echo Linking $@...
392 $(CC) $(LDFLAGS) -o $@ testipp.o libcups.a \
393 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
394
395
396 #
397 # testi18n (dependency on static CUPS library is intentional)
398 #
399
400 testi18n: testi18n.o libcups.a
401 echo Linking $@...
402 $(CC) $(LDFLAGS) -o $@ testi18n.o libcups.a \
403 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
404
405
406 #
407 # testlang (dependency on static CUPS library is intentional)
408 #
409
410 testlang: testlang.o libcups.a
411 echo Linking $@...
412 $(CC) $(LDFLAGS) -o $@ testlang.o libcups.a \
413 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
414
415
416 #
417 # testppd (dependency on static CUPS library is intentional)
418 #
419
420 testppd: testppd.o libcups.a
421 echo Linking $@...
422 $(CC) $(LDFLAGS) -o $@ testppd.o libcups.a \
423 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
424
425
426 #
427 # Automatic API help files...
428 #
429
430 apihelp:
431 echo Generating CUPS API help files...
432 mxmldoc --section "Programming" --title "Array API" \
433 --intro api-array.shtml \
434 array.h array.c >../doc/help/api-array.html
435 mxmldoc --section "Programming" --title "CUPS API" \
436 --intro api-cups.shtml \
437 cups.h dest.c getputfile.c language.c notify.c \
438 options.c tempfile.c usersys.c \
439 util.c >../doc/help/api-cups.html
440 mxmldoc --section "Programming" --title "File and Directory APIs" \
441 --intro api-filedir.shtml \
442 file.h file.c dir.h dir.c >../doc/help/api-filedir.html
443 mxmldoc --section "Programming" --title "PPD API" \
444 --intro api-ppd.shtml \
445 ppd.h attr.c custom.c emit.c localize.c mark.c page.c \
446 ppd.c >../doc/help/api-ppd.html
447 mxmldoc --section "Programming" --title "HTTP and IPP APIs" \
448 --intro api-httpipp.shtml \
449 http.h ipp.h auth.c encode.c http.c http-addr.c \
450 http-support.c ipp.c ipp-support.c md5passwd.c \
451 request.c >../doc/help/api-httpipp.html
452 mxmldoc --section "Programming" --title "Filter and Backend APIs" \
453 --intro api-filter.shtml \
454 backchannel.c sidechannel.c sidechannel.h >../doc/help/api-filter.html
455
456
457 #
458 # Dependencies...
459 #
460
461 include Dependencies
462
463
464 #
465 # End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
466 #