47 lines
1.8 KiB
Makefile
47 lines
1.8 KiB
Makefile
INCLUDES = -I${top_srcdir}/include @VIPS_CFLAGS@ @VIPS_INCLUDES@ @PYTHON_INCLUDES@
|
|
|
|
# we install to a directory inside the python area, since we are a module
|
|
vipsccdir = $(pyexecdir)/vipsCC
|
|
|
|
vipscc_PYTHON = VImage.py VDisplay.py VError.py VMask.py __init__.py
|
|
|
|
# need an expanded VImage.h ... SWIG's preprocessor b0rks on includes inside
|
|
# class definitions
|
|
vimagemodule.cxx: VImage.i
|
|
cpp -DSWIG -E $(top_srcdir)/include/vips/VImage.h > VImage.h
|
|
swig -python -c++ -interface $(@:.cxx=) -I$(top_srcdir)/include -o $@ $<
|
|
|
|
vdisplaymodule.cxx: VDisplay.i
|
|
swig -python -c++ -interface $(@:.cxx=) -I$(top_srcdir)/include -o $@ $<
|
|
|
|
verrormodule.cxx: VError.i
|
|
swig -python -c++ -interface $(@:.cxx=) -I$(top_srcdir)/include -o $@ $<
|
|
|
|
vmaskmodule.cxx: VMask.i
|
|
swig -python -c++ -interface $(@:.cxx=) -I$(top_srcdir)/include -o $@ $<
|
|
|
|
vipscc_LTLIBRARIES = vimagemodule.la vdisplaymodule.la verrormodule.la vmaskmodule.la
|
|
|
|
vimagemodule_la_LDFLAGS = -module -avoid-version
|
|
vimagemodule_la_LIBADD = ../../libsrcCC/libvipsCC.la ../../libsrc/libvips.la $(VIPS_LIBS)
|
|
nodist_vimagemodule_la_SOURCES = vimagemodule.cxx
|
|
|
|
vdisplaymodule_la_LDFLAGS = -module -avoid-version
|
|
vdisplaymodule_la_LIBADD = ../../libsrcCC/libvipsCC.la $(VIPS_LIBS)
|
|
nodist_vdisplaymodule_la_SOURCES = vdisplaymodule.cxx
|
|
|
|
verrormodule_la_LDFLAGS = -module -avoid-version
|
|
verrormodule_la_LIBADD = ../../libsrcCC/libvipsCC.la $(VIPS_LIBS)
|
|
nodist_verrormodule_la_SOURCES = verrormodule.cxx
|
|
|
|
vmaskmodule_la_LDFLAGS = -module -avoid-version
|
|
vmaskmodule_la_LIBADD = ../../libsrcCC/libvipsCC.la $(VIPS_LIBS)
|
|
nodist_vmaskmodule_la_SOURCES = vmaskmodule.cxx
|
|
|
|
CLEANFILES = \
|
|
vimagemodule.cxx VImage.h \
|
|
verrormodule.cxx vdisplaymodule.cxx vmaskmodule.cxx \
|
|
VImage.py VDisplay.py VError.py VMask.py
|
|
|
|
EXTRA_DIST = VImage.i VDisplay.i VError.i VMask.i __init__.py
|