84 lines
2.7 KiB
Plaintext
Executable File
84 lines
2.7 KiB
Plaintext
Executable File
|
|
PREF_CCFLAGS = $(CCOPTFLAG) ; # Turn optimisation on
|
|
#PREF_CCFLAGS = $(CCDEBUGFLAG) ; # Debugging flags
|
|
PREF_LINKFLAGS = $(LINKDEBUGFLAG) ;
|
|
|
|
# Run configure if it seems to be needed
|
|
if $(UNIX) {
|
|
|
|
DEFINES += "unix" ; # libtiff assumes this
|
|
if $(CROSS_TARGET) {
|
|
CROSS_HOST = --build=$(CROSS_TARGET) ;
|
|
CROSS_ENV = "CFLAGS=$(CROSS_CFLAGS) LDFLAGS=$(CROSS_LDFLAGS)" ;
|
|
} else {
|
|
CROSS_HOST = " " ;
|
|
CROSS_ENV = " " ;
|
|
}
|
|
# Genfile actually creates libtiff/tif_config.h and libtiff/tiffconf.h:
|
|
GenFileNND libtiff/tif_config.h :
|
|
"(cd $(SUBDIR); chmod +x configure ; $(CROSS_ENV) ./configure $(CROSS_HOST) --disable-old-jpeg --disable-pixarlog --disable-zlib --disable-jbig)" : configure ;
|
|
# Workaround Jam problem of two products from one action:
|
|
FakeFile libtiff/tiffconf.h : libtiff/tif_config.h ;
|
|
}
|
|
|
|
# else copy them
|
|
if $(NT) {
|
|
File libtiff/tiffconf.h : libtiff/tiffconf.vc.h ;
|
|
File libtiff/tif_config.h : libtiff/tif_config.vc.h ;
|
|
}
|
|
|
|
ObjectKeep port/getopt.c ;
|
|
ObjectKeep port/strcasecmp.c ;
|
|
|
|
# generation utilities (don't use libport ! - there will be dependency problems for Xcompile!)
|
|
if $(UNIX) {
|
|
Main mkg3states : libtiff/mkg3states.c [ CatPaths port : strcasecmp.c ] ;
|
|
} else {
|
|
Main mkg3states : libtiff/mkg3states.c [ CatPaths port : getopt.c strcasecmp.c ] ;
|
|
}
|
|
GenFileND libtiff/tif_fax3sm.c : mkg3states -c const [ NormPaths libtiff/tif_fax3sm.c ] ;
|
|
|
|
# support library for tools
|
|
if $(UNIX) {
|
|
Library libport.lib : [ CatPaths port : strcasecmp.c ] ;
|
|
} else {
|
|
Library libport.lib : [ CatPaths port : getopt.c strcasecmp.c ] ;
|
|
}
|
|
|
|
# tiff library
|
|
LIBSRCS = tif_fax3.c tif_aux.c tif_close.c tif_codec.c tif_fax3sm.c tif_predict.c
|
|
tif_compress.c tif_dir.c tif_dirinfo.c tif_dirread.c tif_dirwrite.c
|
|
tif_dumpmode.c tif_error.c tif_getimage.c tif_flush.c tif_luv.c
|
|
tif_lzw.c tif_next.c tif_open.c tif_packbits.c tif_print.c
|
|
tif_read.c tif_swab.c tif_strip.c tif_thunder.c tif_tile.c
|
|
tif_version.c tif_warning.c tif_write.c tif_extension.c
|
|
tif_jpeg.c tif_ojpeg.c ;
|
|
|
|
if $(UNIX) {
|
|
LIBSRCS += tif_unix.c ;
|
|
} else {
|
|
LIBSRCS += tif_win32.c ;
|
|
}
|
|
|
|
# Optional codecs not included
|
|
# tif_zip.c
|
|
# tif_pixarlog.c
|
|
Library libtiff.lib : [ CatPaths libtiff : $(LIBSRCS) ] : : : $(JPEGINC) libtiff : ;
|
|
|
|
#Library library : sources : flags : defines : hdrpaths : objects
|
|
|
|
# copy header file to lib directory
|
|
File tiffconf.h : libtiff/tiffconf.h ;
|
|
#File tif_config.h : libtiff/tif_config.h ;
|
|
File tiffvers.h : libtiff/tiffvers.h ;
|
|
File tiffio.h : libtiff/tiffio.h ;
|
|
File tiff.h : libtiff/tiff.h ;
|
|
# Because we're copying them, Jam doesn't scan them, so
|
|
# we have to set the co-dependencies explicitly :-(
|
|
NIncludes tiff.h : tiffconf.h ;
|
|
NIncludes tiffio.h : tiff.h tiffvers.h ;
|
|
|
|
# Compile some of the tools
|
|
SubInclude tools ;
|
|
|