libvips/tools/iofuncs/Makefile.am

23 lines
484 B
Makefile
Raw Normal View History

2009-08-16 17:00:08 +02:00
bin_PROGRAMS = \
vips \
edvips \
2010-01-11 16:08:13 +01:00
vipsthumbnail \
2009-10-05 15:00:37 +02:00
header
2009-08-16 17:00:08 +02:00
vips_SOURCES = vips.c
edvips_SOURCES = edvips.c
header_SOURCES = header.c
2010-01-11 16:08:13 +01:00
vipsthumbnail_SOURCES = vipsthumbnail.c
2009-08-16 17:00:08 +02:00
INCLUDES = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
AM_LDFLAGS = @LDFLAGS@
LDADD = @VIPS_CFLAGS@ ${top_builddir}/libvips/libvips.la @VIPS_LIBS@
if ENABLE_LINKS
install-exec-hook:
${top_srcdir}/src/scripts/post_install ${DESTDIR}${bindir}
uninstall-hook:
${RM} ${bindir}/im_*
2010-01-08 15:28:40 +01:00
endif
2009-08-16 17:00:08 +02:00