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 18 filtersdir = $(FILTER_PATH) 19 20 MAGICK_FILTER_CPPFLAGS = $(AM_CPPFLAGS) 21 22 MAGICKCORE_FILTER_SRCS = \ 23 filters/analyze.c 24 25 if WITH_MODULES 26 filters_LTLIBRARIES = \ 27 filters/analyze.la 28 else 29 filters_LTLIBRARIES = 30 endif # WITH_MODULES 31 filters_CPPFLAGS = $(MAGICK_FILTER_CPPFLAGS) 32 33 # analyze filter module 34 filters_analyze_la_SOURCES = filters/analyze.c 35 filters_analyze_la_CPPFLAGS = $(MAGICK_FILTER_CPPFLAGS) 36 filters_analyze_la_LDFLAGS = $(MODULECOMMONFLAGS) 37 filters_analyze_la_LIBADD = $(MAGICKCORE_LIBS) $(MATH_LIBS) 38