d9f31be67d
add meson.build etc. to EXTRA_DIST see https://github.com/libvips/libvips/issues/2876
19 lines
492 B
Makefile
19 lines
492 B
Makefile
pkginclude_HEADERS = \
|
|
VError8.h \
|
|
VImage8.h \
|
|
VInterpolate8.h \
|
|
VRegion8.h \
|
|
VConnection8.h \
|
|
vips8
|
|
|
|
EXTRA_DIST = \
|
|
meson.build
|
|
|
|
vips-operators:
|
|
echo "// headers for vips operations" > vips-operators; \
|
|
echo "// paste this file into VImage8.h, do not leave in repo" > vips-operators; \
|
|
echo -n "// " >> vips-operators; \
|
|
date >> vips-operators; \
|
|
echo "// this file is generated automatically, do not edit!" >> vips-operators; \
|
|
./../../gen-operators.py -g h >> vips-operators
|