root / ImageMagick / trunk / filters / Makefile.am

Revision 10616, 1.1 kB (checked in by cristy, 4 months ago)
Line 
1#  Copyright 1999-2008 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#    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#
15#  Makefile for building ImageMagick filter modules.
16
17# Where filter modules get installed
18filtersdir = $(FILTER_PATH)
19
20MAGICK_FILTER_SRCS = \
21        filters/analyze.c
22
23if WITH_MODULES
24filters_LTLIBRARIES = \
25        filters/analyze.la
26else
27filters_LTLIBRARIES =
28endif # WITH_MODULES
29
30# analyze filter module
31filters_analyze_la_SOURCES      = filters/analyze.c
32filters_analyze_la_CPPFLAGS     = $(MODULE_EXTRA_CPPFLAGS)
33filters_analyze_la_LDFLAGS      = $(MODULECOMMONFLAGS)
34filters_analyze_la_LIBADD       = $(MAGICKCORE_LIBS)
35
Note: See TracBrowser for help on using the browser.