libvips/cplusplus/include/vips/Makefile.am

19 lines
509 B
Makefile
Raw Normal View History

2014-10-20 12:50:34 +02:00
pkginclude_HEADERS = \
2014-10-27 14:41:44 +01:00
VError8.h \
VImage8.h \
2014-10-20 12:50:34 +02:00
vips8 \
vips-operators.h
# swap the 'awk' line for this:
# awk '{if($$1!="deprecated") print $$1}'` ; \
# to not generate the wrappers for deprecated functions
vips-operators.h:
packages=`vips list packages | \
awk '{print $$1}'` ; \
echo > vips-operators.h ; \
for name in $$packages; do \
echo "// headers for package $$name" >> vips-operators.h ; \
vips cpph $$name >> vips-operators.h ; \
echo >> vips-operators.h ; \
done