2008-02-28 22:53:09 +01:00
|
|
|
# only build in the cimg dir if it's enabled
|
|
|
|
if WITH_CIMG
|
|
|
|
C_COMPILE_DIR = cimg
|
|
|
|
C_DIST_DIR =
|
|
|
|
C_LIB = cimg/libcimg.la
|
|
|
|
else
|
|
|
|
C_COMPILE_DIR =
|
|
|
|
C_DIST_DIR = cimg
|
|
|
|
C_LIB =
|
|
|
|
endif
|
2007-08-29 18:23:50 +02:00
|
|
|
|
|
|
|
SUBDIRS = \
|
|
|
|
acquire \
|
|
|
|
arithmetic \
|
|
|
|
boolean \
|
|
|
|
colour \
|
|
|
|
conversion \
|
|
|
|
convolution \
|
2008-02-28 22:53:09 +01:00
|
|
|
$(C_COMPILE_DIR) \
|
2007-08-29 18:23:50 +02:00
|
|
|
freq_filt \
|
|
|
|
histograms_lut \
|
|
|
|
inplace \
|
|
|
|
iofuncs \
|
|
|
|
matrix \
|
|
|
|
morphology \
|
|
|
|
mosaicing \
|
|
|
|
other \
|
|
|
|
relational \
|
|
|
|
video \
|
|
|
|
.
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libvips.la
|
|
|
|
|
|
|
|
libvips_la_SOURCES = dummy.c
|
|
|
|
|
|
|
|
# DLLs need dependant libs there too ... put @VIPS_LIBS@ at the end
|
|
|
|
libvips_la_LIBADD = \
|
|
|
|
acquire/libacquire.la \
|
|
|
|
arithmetic/libarithmetic.la \
|
|
|
|
boolean/libboolean.la \
|
|
|
|
colour/libcolour.la \
|
|
|
|
conversion/libconversion.la \
|
|
|
|
convolution/libconvolution.la \
|
2008-02-28 22:53:09 +01:00
|
|
|
$(C_LIB) \
|
2007-08-29 18:23:50 +02:00
|
|
|
freq_filt/libfreq_filt.la \
|
|
|
|
histograms_lut/libhistograms_lut.la \
|
|
|
|
inplace/libinplace.la \
|
|
|
|
iofuncs/libiofuncs.la \
|
|
|
|
matrix/libmatrix.la \
|
|
|
|
morphology/libmorphology.la \
|
|
|
|
mosaicing/libmosaicing.la \
|
|
|
|
other/libother.la \
|
|
|
|
relational/librelational.la \
|
|
|
|
video/libvideo.la \
|
|
|
|
@VIPS_LIBS@
|
|
|
|
|
|
|
|
# use "-no-undefined" because we need to be able to generate dlls as well
|
|
|
|
|
|
|
|
# commented out
|
|
|
|
# -no-undefined
|
|
|
|
# because I can't get libtool DLL builds working :-(
|
|
|
|
|
|
|
|
libvips_la_LDFLAGS = \
|
|
|
|
-no-undefined \
|
|
|
|
-version-info @LIBRARY_CURRENT@:@LIBRARY_REVISION@:@LIBRARY_AGE@
|
|
|
|
|
|
|
|
vips.def:
|
|
|
|
./makedef.pl $(prefix) > vips.def
|
|
|
|
|
2008-02-28 22:53:09 +01:00
|
|
|
EXTRA_DIST = \
|
|
|
|
vips.def \
|
|
|
|
makedef.pl \
|
|
|
|
$(C_DIST_DIR)
|