1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
##
## SPDX-License-Identifier: BSD-3-Clause
## Copyright Contributors to the OpenEXR Project.
##
## Process this file with automake to produce Makefile.in
# tell autoconf to include the m4 macros in the /m4 directory
# (an alternative to the acinclude.m4 mechanism)
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = config IlmImf IlmImfUtil IlmImfTest IlmImfUtilTest \
IlmImfFuzzTest exrheader exrmaketiled IlmImfExamples doc \
exrstdattr exrmakepreview exrenvmap exrmultiview exrmultipart exr2aces
DIST_SUBDIRS = \
$(SUBDIRS)
EXTRA_DIST = \
AUTHORS ChangeLog LICENSE NEWS PATENTS \
README.md \
bootstrap \
CMakeLists.txt
dist-hook:
cp -fpR $(abspath $(srcdir)/..)/cmake $(distdir)
find $(distdir)/cmake -type d ! -perm -700 -exec chmod u+rwx {} \;
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = OpenEXR.pc
m4datadir = $(datadir)/aclocal
|