39 lines
631 B
Makefile
39 lines
631 B
Makefile
noinst_LTLIBRARIES = libcreate.la
|
|
|
|
libcreate_la_SOURCES = \
|
|
perlin.c \
|
|
worley.c \
|
|
create.c \
|
|
pcreate.h \
|
|
gaussmat.c \
|
|
logmat.c \
|
|
buildlut.c \
|
|
invertlut.c \
|
|
tonelut.c \
|
|
identity.c \
|
|
point.c \
|
|
point.h \
|
|
mask.c \
|
|
pmask.h \
|
|
mask_ideal.c \
|
|
mask_ideal_ring.c \
|
|
mask_ideal_band.c \
|
|
mask_butterworth.c \
|
|
mask_butterworth_ring.c \
|
|
mask_butterworth_band.c \
|
|
mask_gaussian.c \
|
|
mask_gaussian_ring.c \
|
|
mask_gaussian_band.c \
|
|
mask_fractal.c \
|
|
fractsurf.c \
|
|
eye.c \
|
|
grey.c \
|
|
xyz.c \
|
|
black.c \
|
|
text.c \
|
|
gaussnoise.c \
|
|
sines.c \
|
|
zone.c
|
|
|
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|