2011-04-06 13:06:32 +02:00
|
|
|
bin_PROGRAMS = \
|
|
|
|
vips \
|
2014-06-23 21:22:50 +02:00
|
|
|
vipsedit \
|
2011-04-06 13:06:32 +02:00
|
|
|
vipsthumbnail \
|
2014-06-23 21:22:50 +02:00
|
|
|
vipsheader
|
2011-04-06 13:06:32 +02:00
|
|
|
|
|
|
|
vips_SOURCES = vips.c
|
2014-06-23 21:22:50 +02:00
|
|
|
vipsedit_SOURCES = vipsedit.c
|
|
|
|
vipsheader_SOURCES = vipsheader.c
|
2011-04-06 13:06:32 +02:00
|
|
|
vipsthumbnail_SOURCES = vipsthumbnail.c
|
|
|
|
|
2013-01-23 11:17:51 +01:00
|
|
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
2011-04-06 13:06:32 +02:00
|
|
|
AM_LDFLAGS = @LDFLAGS@
|
|
|
|
LDADD = @VIPS_CFLAGS@ ${top_builddir}/libvips/libvips.la @VIPS_LIBS@
|
|
|
|
|
|
|
|
bin_SCRIPTS = \
|
|
|
|
light_correct \
|
|
|
|
shrink_width \
|
|
|
|
batch_image_convert \
|
|
|
|
batch_rubber_sheet \
|
|
|
|
batch_crop \
|
2013-11-26 15:57:56 +01:00
|
|
|
vipsprofile \
|
2016-04-15 09:40:17 +02:00
|
|
|
vips-8.3
|
2011-04-06 13:06:32 +02:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2013-11-29 15:28:55 +01:00
|
|
|
vipsprofile \
|
2016-04-15 09:40:17 +02:00
|
|
|
vips-8.3 \
|
2011-04-06 13:06:32 +02:00
|
|
|
light_correct.in \
|
|
|
|
shrink_width.in \
|
|
|
|
batch_image_convert.in \
|
|
|
|
batch_rubber_sheet.in \
|
|
|
|
batch_crop.in
|
|
|
|
|
|
|
|
install-exec-hook:
|
|
|
|
chmod ugo+x ${DESTDIR}${bindir}/light_correct
|
|
|
|
chmod ugo+x ${DESTDIR}${bindir}/shrink_width
|
|
|
|
chmod ugo+x ${DESTDIR}${bindir}/batch_image_convert
|
|
|
|
chmod ugo+x ${DESTDIR}${bindir}/batch_rubber_sheet
|
|
|
|
chmod ugo+x ${DESTDIR}${bindir}/batch_crop
|
2013-11-26 15:57:56 +01:00
|
|
|
chmod ugo+x ${DESTDIR}${bindir}/vipsprofile
|
2009-08-16 17:00:08 +02:00
|
|
|
|