File: Makefile.am

package info (click to toggle)
imagemagick 6%3A6.0.6.2-2.9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 33,284 kB
  • ctags: 14,844
  • sloc: ansic: 190,790; cpp: 17,203; sh: 8,740; perl: 4,190; makefile: 1,740; tcl: 459
file content (71 lines) | stat: -rw-r--r-- 1,953 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#  Makefile for building ImageMagick filter modules
#
#  Copyright 1999-2004 ImageMagick Studio LLC, a non-profit organization    
#  dedicated to making software imaging solutions freely available.
#
#  You may not use this file except in compliance with the License.  You may
#  obtain a copy of the License at
#
#    http://www.imagemagick.org/www/Copyright.html
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.
#

# Don't require all the GNU mandated files
AUTOMAKE_OPTIONS = 1.8 foreign

AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) @MODULE_EXTRA_CPPFLAGS@

MAGICK_FILTER_SRCS = \
  analyze.c

if WITH_MODULES
noinst_LTLIBRARIES =
else
noinst_LTLIBRARIES = libFilters.la
libFilters_la_SOURCES = $(MAGICK_FILTER_SRCS)
EXTRA_libFilters_la_SOURCES =  # Platform dependent modules
endif # WITH_MODULES

# Additional files to distribute
EXTRA_DIST = 

# Headers which are not installed but which are distributed
noinst_HEADERS = 

# Location of libImageMagick.la
LIBMAGICK = $(top_builddir)/magick/libMagick.la

# Where filter modules are installed
pkgdir = @MagickFilterModulesPath@

# Where config files get installed
pkglibdir = @MagickLibPath@

# Architecture-dependent data files installed with modules
pkg_DATA = 

# Architecture independent data files installed into ImageMagick/share
pkgdata_DATA =

if WITH_MODULES

# Modules which are to be built
pkg_LTLIBRARIES = \
  analyze.la
MODULECOMMONFLAGS = -no-undefined -module -avoid-version
else
pkg_LTLIBRARIES =
MODULECOMMONFLAGS     =
endif # WITH_MODULES

# Analyze module
analyze_la_SOURCES      = analyze.c
analyze_la_LDFLAGS      = $(MODULECOMMONFLAGS)
analyze_la_LIBADD       = $(LIBMAGICK)

DEFS = @DEFS@ -I../