1# Copyright 1999-2019 ImageMagick Studio LLC, a non-profit organization 2# dedicated to making software imaging solutions freely available. 3# 4# You may not use this file except in compliance with the License. You may 5# obtain a copy of the License at 6# 7# https://imagemagick.org/script/license.php 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14# 15# Makefile for building ImageMagick filter modules. 16 17# Where filter modules get installed 18filtersdir = $(FILTER_PATH) 19 20MAGICK_FILTER_CPPFLAGS = $(AM_CPPFLAGS) 21 22MAGICKCORE_FILTER_SRCS = \ 23 filters/analyze.c 24 25if WITH_MODULES 26filters_LTLIBRARIES = \ 27 filters/analyze.la 28else 29filters_LTLIBRARIES = 30endif # WITH_MODULES 31filters_CPPFLAGS = $(MAGICK_FILTER_CPPFLAGS) 32 33# analyze filter module 34filters_analyze_la_SOURCES = filters/analyze.c 35filters_analyze_la_CPPFLAGS = $(MAGICK_FILTER_CPPFLAGS) 36filters_analyze_la_LDFLAGS = $(MODULECOMMONFLAGS) 37filters_analyze_la_LIBADD = $(MAGICKCORE_LIBS) $(MATH_LIBS) 38