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

« back to all changes in this revision

Viewing changes to plugins/input/shape/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
 
        shape.la
5
 
 
6
 
shape_la_SOURCES = \
7
 
        dbffile.cpp\
8
 
        dbffile.hpp\
9
 
        shape.cpp\
10
 
        shape.hpp\
11
 
        shape_featureset.cpp\
12
 
        shape_featureset.hpp\
13
 
        shapefile.cpp\
14
 
        shapefile.hpp\
15
 
        shape_index_featureset.cpp\
16
 
        shape_index_featureset.hpp\
17
 
        shape_io.cpp\
18
 
        shape_io.hpp\
19
 
        shp_index.hpp
20
 
 
21
 
shape_la_CXXFLAGS = \
22
 
  -Wall \
23
 
  ${PROFILING_CFLAGS} \
24
 
  ${TRACING_CFLAGS} \
25
 
        -I../../../include
26
 
 
27
 
shape_la_LDFLAGS = \
28
 
        -module \
29
 
        -avoid-version \
30
 
        -shrext .input
31
 
 
32
 
## File created by the gnome-build tools
33