Blame libtiff/SConstruct

Packit 7838c8
# $Id: SConstruct,v 1.4 2007/02/24 15:03:50 dron Exp $
Packit 7838c8
Packit 7838c8
# Tag Image File Format (TIFF) Software
Packit 7838c8
#
Packit 7838c8
# Copyright (C) 2005, Andrey Kiselev <dron@ak4719.spb.edu>
Packit 7838c8
#
Packit 7838c8
# Permission to use, copy, modify, distribute, and sell this software and 
Packit 7838c8
# its documentation for any purpose is hereby granted without fee, provided
Packit 7838c8
# that (i) the above copyright notices and this permission notice appear in
Packit 7838c8
# all copies of the software and related documentation, and (ii) the names of
Packit 7838c8
# Sam Leffler and Silicon Graphics may not be used in any advertising or
Packit 7838c8
# publicity relating to the software without the specific, prior written
Packit 7838c8
# permission of Sam Leffler and Silicon Graphics.
Packit 7838c8
# 
Packit 7838c8
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
Packit 7838c8
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
Packit 7838c8
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
Packit 7838c8
# 
Packit 7838c8
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
Packit 7838c8
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
Packit 7838c8
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
Packit 7838c8
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
Packit 7838c8
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
Packit 7838c8
# OF THIS SOFTWARE.
Packit 7838c8
Packit 7838c8
# This file contains rules to build software with the SCons tool
Packit 7838c8
# (see the http://www.scons.org/ for details on SCons).
Packit 7838c8
Packit 7838c8
# Import globally defined options
Packit 7838c8
Import([ 'env', 'idir_lib' ])
Packit 7838c8
Packit 7838c8
SRCS = [ \
Packit 7838c8
	'tif_aux.c', \
Packit 7838c8
	'tif_close.c', \
Packit 7838c8
	'tif_codec.c', \
Packit 7838c8
	'tif_color.c', \
Packit 7838c8
	'tif_compress.c', \
Packit 7838c8
	'tif_dir.c', \
Packit 7838c8
	'tif_dirinfo.c', \
Packit 7838c8
	'tif_dirread.c', \
Packit 7838c8
	'tif_dirwrite.c', \
Packit 7838c8
	'tif_dumpmode.c', \
Packit 7838c8
	'tif_error.c', \
Packit 7838c8
	'tif_extension.c', \
Packit 7838c8
	'tif_fax3.c', \
Packit 7838c8
	'tif_fax3sm.c', \
Packit 7838c8
	'tif_flush.c', \
Packit 7838c8
	'tif_getimage.c', \
Packit 7838c8
	'tif_jbig.c', \
Packit 7838c8
	'tif_jpeg.c', \
Packit 7838c8
	'tif_luv.c', \
Packit 7838c8
	'tif_lzw.c', \
Packit 7838c8
	'tif_next.c', \
Packit 7838c8
	'tif_ojpeg.c', \
Packit 7838c8
	'tif_open.c', \
Packit 7838c8
	'tif_packbits.c', \
Packit 7838c8
	'tif_pixarlog.c', \
Packit 7838c8
	'tif_predict.c', \
Packit 7838c8
	'tif_print.c', \
Packit 7838c8
	'tif_read.c', \
Packit 7838c8
	'tif_strip.c', \
Packit 7838c8
	'tif_swab.c', \
Packit 7838c8
	'tif_thunder.c', \
Packit 7838c8
	'tif_tile.c', \
Packit 7838c8
	'tif_unix.c', \
Packit 7838c8
	'tif_version.c', \
Packit 7838c8
	'tif_warning.c', \
Packit 7838c8
	'tif_write.c', \
Packit 7838c8
	'tif_zip.c' ]
Packit 7838c8
Packit 7838c8
StaticLibrary('tiff', SRCS)
Packit 7838c8
SharedLibrary('tiff', SRCS)
Packit 7838c8