~ubuntu-branches/ubuntu/quantal/imagemagick/quantal

« back to all changes in this revision

Viewing changes to coders/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Muharem Hrnjadovic
  • Date: 2009-06-04 13:01:13 UTC
  • mfrom: (1.1.5 upstream) (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090604130113-my9114jxmafpwew3
Tags: 7:6.5.1.0-1.1ubuntu1
* Merge from debian unstable, remaining changes:
  - (Build-)depend on libltdl7-dev instead of libltdl3-dev (the armel buildds
    currently have both available).
  - Don't build-dep on librsvg, it brings in excessive dependencies

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#  Copyright 1999-2008 ImageMagick Studio LLC, a non-profit organization
 
1
#  Copyright 1999-2009 ImageMagick Studio LLC, a non-profit organization
2
2
#  dedicated to making software imaging solutions freely available.
3
3
#
4
4
#  You may not use this file except in compliance with the License.  You may
12
12
#  See the License for the specific language governing permissions and
13
13
#  limitations under the License.
14
14
#
 
15
#  Copyright (C) 2003 - 2008 GraphicsMagick Group
 
16
#
15
17
#  Makefile for building ImageMagick Coder library.
16
18
 
17
19
# Where coder modules get installed
97
99
        coders/gradient.c \
98
100
        coders/gray.c \
99
101
        coders/histogram.c \
 
102
        coders/hrz.c \
100
103
        coders/html.c \
101
104
        coders/icon.c \
102
105
        coders/info.c \
205
208
        coders/gradient.la \
206
209
        coders/gray.la \
207
210
        coders/histogram.la \
 
211
        coders/hrz.la \
208
212
        coders/html.la \
209
213
        coders/icon.la \
210
214
        coders/info.la \
470
474
coders_histogram_la_LDFLAGS = $(MODULECOMMONFLAGS)
471
475
coders_histogram_la_LIBADD  = $(MAGICKCORE_LIBS)
472
476
 
 
477
# HRZ coder module
 
478
coders_hrz_la_SOURCES      = coders/hrz.c
 
479
coders_hrz_la_CPPFLAGS     = $(MODULE_EXTRA_CPPFLAGS)
 
480
coders_hrz_la_LDFLAGS      = $(MODULECOMMONFLAGS)
 
481
coders_hrz_la_LIBADD       = $(MAGICKCORE_LIBS)
 
482
 
473
483
# HTML coder module
474
484
coders_html_la_SOURCES     = coders/html.c
475
485
coders_html_la_CPPFLAGS    = $(MODULE_EXTRA_CPPFLAGS)