2 # "$Id: Makefile 181 2006-06-22 20:01:18Z jlovell $"
4 # API library Makefile for the Common UNIX Printing System (CUPS).
6 # Copyright 1997-2006 by Easy Software Products, all rights reserved.
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
15 # Attn: CUPS Licensing Information
16 # Easy Software Products
17 # 44141 Airport View Drive, Suite 204
18 # Hollywood, Maryland 20636 USA
20 # Voice: (301) 373-9600
21 # EMail: cups-info@cups.org
22 # WWW: http://www.cups.org
24 # This file is subject to the Apple OS-Developed Software exception.
72 LIB32OBJS
= $(LIBOBJS
:.o
=.32.o
)
73 LIB64OBJS
= $(LIBOBJS
:.o
=.64.o
)
90 # Header files to install...
109 # Targets in this directory...
128 # Make all targets...
135 # Remove object and target files...
139 $(RM
) $(OBJS
) $(TARGETS
)
140 $(RM
) libcups.so libcups.sl libcups.dylib
145 # Update dependencies (without system header dependencies...)
149 touch Dependencies.tmp
150 makedepend
-Y
-I..
-fDependencies.tmp
$(OBJS
:.o
=.c
) >/dev
/null
2>&1
152 cp Dependencies.tmp Dependencies
153 sed
-r
-e
'1,$$s/^([^.]+)\.o:/\1\.32.o: \1\.c /' Dependencies.tmp
>>Dependencies
154 sed
-r
-e
'1,$$s/^([^.]+)\.o:/\1\.64.o: \1\.c /' Dependencies.tmp
>>Dependencies
155 $(RM
) Dependencies.tmp
159 # Install object and target files...
162 install: all installhdrs
$(INSTALLSTATIC
) $(INSTALL32
) $(INSTALL64
)
163 $(INSTALL_DIR
) -m
755 $(LIBDIR
)
164 $(INSTALL_LIB
) $(LIBCUPS
) $(LIBDIR
)
165 if
test $(LIBCUPS
) = "libcups.so.2" -o
$(LIBCUPS
) = "libcups.sl.2"; then \
166 $(RM
) $(LIBDIR
)/`basename $(LIBCUPS) .2`; \
167 $(LN
) $(LIBCUPS
) $(LIBDIR
)/`basename $(LIBCUPS) .2`; \
169 if
test $(LIBCUPS
) = "libcups.2.dylib"; then \
170 $(STRIP
) -x
$(LIBDIR
)/$(LIBCUPS
); \
171 $(RM
) $(LIBDIR
)/libcups.dylib
; \
172 $(LN
) $(LIBCUPS
) $(LIBDIR
)/libcups.dylib
; \
176 $(INSTALL_DIR
) -m
755 $(LIBDIR
)
177 $(INSTALL_LIB
) libcups.a
$(LIBDIR
)
178 $(RANLIB
) $(LIBDIR
)/libcups.a
181 $(INSTALL_DIR
) -m
755 $(INCLUDEDIR
)/cups
182 for file in
$(HEADERS
); do \
183 $(INSTALL_DATA
) $$file $(INCLUDEDIR
)/cups
; \
187 $(INSTALL_DIR
) -m
755 $(LIB32DIR
)
188 $(INSTALL_LIB
) 32bit
/libcups.so
.2 $(LIB32DIR
)/libcups.so
.2
189 $(LN
) libcups.so
.2 $(LIB32DIR
)/libcups.so
192 $(INSTALL_DIR
) -m
755 $(LIB64DIR
)
193 $(INSTALL_LIB
) 64bit
/libcups.so
.2 $(LIB64DIR
)/libcups.so
.2
194 $(LN
) libcups.so
.2 $(LIB64DIR
)/libcups.so
198 # Uninstall object and target files...
201 uninstall: $(UNINSTALL32
) $(UNINSTALL64
)
202 $(RM
) $(LIBDIR
)/libcups
.2.dylib
203 $(RM
) $(LIBDIR
)/libcups.a
204 $(RM
) $(LIBDIR
)/libcups.dylib
205 $(RM
) $(LIBDIR
)/libcups_s.a
206 $(RM
) $(LIBDIR
)/libcups.sl
207 $(RM
) $(LIBDIR
)/libcups.sl
.2
208 $(RM
) $(LIBDIR
)/libcups.so
209 $(RM
) $(LIBDIR
)/libcups.so
.2
211 for file in
$(HEADERS
); do \
212 $(RM
) $(INCLUDEDIR
)/cups
/$$file; \
214 -$(RMDIR
) $(INCLUDEDIR
)/cups
217 $(RM
) $(LIB32DIR
)/libcups.so
218 $(RM
) $(LIB32DIR
)/libcups.so
.2
219 -$(RMDIR
) $(LIB32DIR
)
222 $(RM
) $(LIB64DIR
)/libcups.so
223 $(RM
) $(LIB64DIR
)/libcups.so
.2
224 -$(RMDIR
) $(LIB64DIR
)
228 # libcups.so.2, libcups.sl.2
231 libcups.so
.2 libcups.sl
.2: $(LIBOBJS
)
233 $(DSO
) $(ARCHFLAGS
) $(DSOFLAGS
) -o
$@
$(LIBOBJS
) $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
234 $(RM
) `basename $@ .2`
235 $(LN
) $@
`basename $@ .2`
242 32bit
/libcups.so
.2: $(LIB32OBJS
)
243 echo Linking
32-bit
$@...
245 $(DSO
) $(ARCH32FLAGS
) $(DSO32FLAGS
) -o
$@
$(LIB32OBJS
) $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
246 $(RM
) 32bit
/libcups.so
247 $(LN
) libcups.so
.2 32bit
/libcups.so
254 64bit
/libcups.so
.2: $(LIB64OBJS
)
255 echo Linking
64-bit
$@...
257 $(DSO
) $(ARCH64FLAGS
) $(DSO64FLAGS
) -o
$@
$(LIB64OBJS
) $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
258 $(RM
) 64bit
/libcups.so
259 $(LN
) libcups.so
.2 64bit
/libcups.so
266 libcups
.2.dylib
: $(LIBOBJS
)
268 $(DSO
) $(ARCHFLAGS
) $(DSOFLAGS
) -o
$@ \
269 -install_name
$(libdir)/$@ \
270 -current_version
2.7.0 \
271 -compatibility_version
2.0.0 \
272 $(LIBOBJS
) $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
274 $(LN
) $@ libcups.dylib
281 libcups_s.a
: $(LIBOBJS
) libcups_s.exp
283 $(DSO
) $(DSOFLAGS
) -Wl
,-bexport
:libcups_s.exp
-o libcups_s.o
$(LIBOBJS
) $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
) -lm
285 $(AR
) $(ARFLAGS
) $@ libcups_s.o
292 libcups.la
: $(LIBOBJS
)
294 $(CC
) $(ARCHFLAGS
) $(DSOFLAGS
) -o
$@
$(LIBOBJS
:.o
=.lo
) -rpath
$(LIBDIR
) \
295 -version-info
2:7 $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
302 libcups.a
: $(LIBOBJS
)
305 $(AR
) $(ARFLAGS
) $@
$(LIBOBJS
)
310 # CUPS language bindings for various scripting languages...
312 # NOTE: Not currently used or functional - see the scripting/php directory
313 # for the hand-written bindings...
316 phpcups.so
: $(LIBCUPS
) php_cups_wrap.o
318 if
test `uname` = Darwin
; then \
319 DSOFLAGS
="-bundle -flat_namespace -undefined suppress"; \
321 DSOFLAGS
="$(DSOFLAGS)"; \
323 $(DSO
) $$DSOFLAGS -o
$@ php_cups_wrap.o
$(LIBS
) `php-config --ldflags --libs`
325 php_cups_wrap.o
: php_cups_wrap.c
327 $(CC
) $(CFLAGS
) `php-config --includes` -c
$<
328 php_cups_wrap.c
: cups.h
329 echo Creating
$< using SWIG...
330 swig
-php
-o
$@
-module cups cups.h
334 # testadmin (dependency on static CUPS library is intentional)
337 testadmin
: testadmin.o libcups.a
339 $(CC
) $(LDFLAGS
) -o
$@ testadmin.o libcups.a \
340 $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
344 # testarray (dependency on static CUPS library is intentional)
347 testarray
: testarray.o libcups.a
349 $(CC
) $(LDFLAGS
) -o
$@ testarray.o libcups.a \
350 $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
354 # testfile (dependency on static CUPS library is intentional)
357 testfile
: testfile.o libcups.a
359 $(CC
) $(LDFLAGS
) -o
$@ testfile.o libcups.a \
360 $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
364 # testhttp (dependency on static CUPS library is intentional)
367 testhttp
: testhttp.o libcups.a
369 $(CC
) $(LDFLAGS
) -o
$@ testhttp.o libcups.a \
370 $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
374 # testipp (dependency on static CUPS library is intentional)
377 testipp
: testipp.o libcups.a
379 $(CC
) $(LDFLAGS
) -o
$@ testipp.o libcups.a \
380 $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
384 # testi18n (dependency on static CUPS library is intentional)
387 testi18n
: testi18n.o libcups.a
389 $(CC
) $(LDFLAGS
) -o
$@ testi18n.o libcups.a \
390 $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
394 # testlang (dependency on static CUPS library is intentional)
397 testlang
: testlang.o libcups.a
399 $(CC
) $(LDFLAGS
) -o
$@ testlang.o libcups.a \
400 $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
404 # testppd (dependency on static CUPS library is intentional)
407 testppd
: testppd.o libcups.a
409 $(CC
) $(LDFLAGS
) -o
$@ testppd.o libcups.a \
410 $(SSLLIBS
) $(COMMONLIBS
) $(LIBZ
)
414 # Automatic API help files...
418 echo Generating CUPS API help files...
419 mxmldoc
--section
"Programming" --title
"Array API" \
420 --intro api-array.shtml \
421 array.h array.c
>..
/doc
/help
/api-array.html
422 mxmldoc
--section
"Programming" --title
"CUPS API" \
423 --intro api-cups.shtml \
424 cups.h dest.c getputfile.c language.c \
425 options.c tempfile.c usersys.c \
426 util.c
>..
/doc
/help
/api-cups.html
427 mxmldoc
--section
"Programming" --title
"File and Directory APIs" \
428 --intro api-filedir.shtml \
429 file.h file.c
dir.h
dir.c
>..
/doc
/help
/api-filedir.html
430 mxmldoc
--section
"Programming" --title
"PPD API" \
431 --intro api-ppd.shtml \
432 ppd.h attr.c custom.c emit.c localize.c mark.c page.c \
433 ppd.c
>..
/doc
/help
/api-ppd.html
434 mxmldoc
--section
"Programming" --title
"HTTP and IPP APIs" \
435 --intro api-httpipp.shtml \
436 http.h ipp.h auth.c encode.c http.c http-addr.c \
437 http-support.c ipp.c ipp-support.c md5passwd.c \
438 request.c
>..
/doc
/help
/api-httpipp.html
439 mxmldoc
--section
"Programming" --title
"Filter and Backend APIs" \
440 --intro api-filter.shtml \
441 backchannel.c
>..
/doc
/help
/api-filter.html
452 # End of "$Id: Makefile 181 2006-06-22 20:01:18Z jlovell $".