~ubuntu-branches/ubuntu/trusty/mapnik/trusty-proposed

« back to all changes in this revision

Viewing changes to plugins/input/raster/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Sauthier
  • Date: 2009-08-27 00:28:37 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090827002837-ztqzfg2rmclfh4i9
Tags: 0.6.1-0ubuntu1
* New upstream release.
* Change usr/lib to usr/lib* to enable build on 64 bits systems due to new
  configuration in SConstruct in :
  - debian/libmapnik-dev.install
  - debian/libmapnik0.6.install
  - debian/mapnik-plugin-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
pkglibdir = $(libdir)/mapnik/input
2
 
 
3
 
pkglib_LTLIBRARIES = \
4
 
        raster.la
5
 
 
6
 
raster_la_SOURCES = \
7
 
        raster_datasource.cpp\
8
 
        raster_datasource.hpp\
9
 
        raster_featureset.cpp\
10
 
        raster_featureset.hpp\
11
 
        raster_info.cpp\
12
 
        raster_info.hpp
13
 
 
14
 
raster_la_CXXFLAGS = \
15
 
  -Wall \
16
 
  ${PROFILING_CFLAGS} \
17
 
  ${TRACING_CFLAGS} \
18
 
        -I../../../include
19
 
 
20
 
raster_la_LDFLAGS = \
21
 
        -module \
22
 
        -avoid-version \
23
 
        -shrext .input
24
 
 
25
 
## File created by the gnome-build tools
26