|
Revision 503, 1.4 KB
(checked in by cristy, 4 weeks ago)
|
|
|
| Line | |
|---|
| 1 | # Copyright 1999-2009 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 |
|---|
| 18 | filtersdir = $(FILTER_PATH) |
|---|
| 19 | |
|---|
| 20 | MAGICK_FILTER_SRCS = \ |
|---|
| 21 | filters/analyze.c \ |
|---|
| 22 | filters/boost.c |
|---|
| 23 | |
|---|
| 24 | if WITH_MODULES |
|---|
| 25 | filters_LTLIBRARIES = \ |
|---|
| 26 | filters/analyze.la \ |
|---|
| 27 | filters/boost.la |
|---|
| 28 | else |
|---|
| 29 | filters_LTLIBRARIES = |
|---|
| 30 | endif # WITH_MODULES |
|---|
| 31 | |
|---|
| 32 | # analyze filter module |
|---|
| 33 | filters_analyze_la_SOURCES = filters/analyze.c |
|---|
| 34 | filters_analyze_la_CPPFLAGS = $(MODULE_EXTRA_CPPFLAGS) |
|---|
| 35 | filters_analyze_la_LDFLAGS = $(MODULECOMMONFLAGS) |
|---|
| 36 | filters_analyze_la_LIBADD = $(MAGICKCORE_LIBS) $(MATH_LIBS) |
|---|
| 37 | |
|---|
| 38 | # boost filter module |
|---|
| 39 | filters_boost_la_SOURCES = filters/boost.c |
|---|
| 40 | filters_boost_la_CPPFLAGS = $(MODULE_EXTRA_CPPFLAGS) |
|---|
| 41 | filters_boost_la_LDFLAGS = $(MODULECOMMONFLAGS) |
|---|
| 42 | filters_boost_la_LIBADD = $(MAGICKCORE_LIBS) $(MATH_LIBS) |
|---|