blob: eca93c3b2b1a126a119e38e44d5d22d2713bf70f [file] [log] [blame]
Cristy7ce65e72015-12-12 18:03:16 -05001# Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00002# 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# http://www.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#
cristy3ed852e2009-09-05 21:47:34 +000015# Makefile for building ImageMagick filter modules.
16
17# Where filter modules get installed
18filtersdir = $(FILTER_PATH)
19
cristy30841e62014-05-19 00:45:15 +000020MAGICK_FILTER_CPPFLAGS = $(AM_CPPFLAGS)
21
cristycd126872011-07-02 13:26:21 +000022MAGICKCORE_FILTER_SRCS = \
cristyd43a46b2010-01-21 02:13:41 +000023 filters/analyze.c
cristy3ed852e2009-09-05 21:47:34 +000024
25if WITH_MODULES
26filters_LTLIBRARIES = \
cristyc8aff842012-12-24 16:59:46 +000027 filters/analyze.la
cristy3ed852e2009-09-05 21:47:34 +000028else
29filters_LTLIBRARIES =
30endif # WITH_MODULES
cristy30841e62014-05-19 00:45:15 +000031filters_CPPFLAGS = $(MAGICK_FILTER_CPPFLAGS)
cristy3ed852e2009-09-05 21:47:34 +000032
33# analyze filter module
34filters_analyze_la_SOURCES = filters/analyze.c
cristy30841e62014-05-19 00:45:15 +000035filters_analyze_la_CPPFLAGS = $(MAGICK_FILTER_CPPFLAGS)
cristy3ed852e2009-09-05 21:47:34 +000036filters_analyze_la_LDFLAGS = $(MODULECOMMONFLAGS)
cristyf54ab652009-10-03 21:06:16 +000037filters_analyze_la_LIBADD = $(MAGICKCORE_LIBS) $(MATH_LIBS)