~ubuntu-branches/ubuntu/quantal/qgis/quantal

« back to all changes in this revision

Viewing changes to providers/postgres/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Steve Halasz
  • Date: 2005-11-05 16:04:45 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051105160445-l0g4isz5bc9yehet
Tags: 0.7.4-1
* New upstream release
* Build GRASS support in qgis-plugin-grass package (Closes: #248649)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
INCLUDES = -I../../src
2
2
 
 
3
%.moc.cpp: %.h
 
4
        $(MOC) -o $@ $<
 
5
 
3
6
plugindir = ${pkglibdir}
4
7
plugin_LTLIBRARIES     = postgresprovider.la
5
8
 
6
9
 
7
 
postgresprovider_la_SOURCES = qgspostgresprovider.cpp           \
8
 
                              qgspostgresprovider.h             \
9
 
                              ../../src/qgsfeature.cpp          \
10
 
                              ../../src/qgsfeatureattribute.cpp \
11
 
                              ../../src/qgsrect.cpp             \
12
 
                              ../../src/qgspoint.cpp            \
13
 
                              ../../src/qgsfield.cpp       
14
 
 
 
10
## non-uic files generated from MOC
 
11
 
 
12
postgresprovider_MOC =  qgspostgresprovider.moc.cpp
 
13
 
 
14
                
 
15
postgresprovider_la_SOURCES =                                   \
 
16
                qgspostgresprovider.cpp                         \
 
17
                qgspostgresprovider.moc.cpp                     \
 
18
                qgspostgresprovider.h                           \
 
19
                ../../src/qgsfeature.cpp                        \
 
20
                ../../src/qgsfeatureattribute.cpp               \
 
21
                ../../src/qgsrect.cpp                           \
 
22
                ../../src/qgspoint.cpp                          \
 
23
                ../../src/qgsfield.cpp                          \
 
24
                qgspostgisbox2d.cpp                             \
 
25
                qgspostgisbox2d.h                               \
 
26
                qgspostgisbox3d.cpp                             \
 
27
                qgspostgisbox3d.h                               \
 
28
                qgspostgrescountthread.cpp                      \
 
29
                qgspostgrescountthread.h                        \
 
30
                qgspostgresextentthread.cpp                     \
 
31
                qgspostgresextentthread.h
 
32
 
 
33
BUILT_SOURCES = $(postgresprovider_MOC)
 
34
                                
15
35
postgresprovider_la_LIBADD = $(QT_LDADD) $(PG_LIB) $(GEOS_LDADD)
16
36
postgresprovider_la_LDFLAGS = -avoid-version -module
17
 
postgresprovider_la_CXXFLAGS = $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) -I$(PG_INC) $(DEBUG_QGIS) $(GEOS_CFLAGS)
 
37
postgresprovider_la_CXXFLAGS = $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(PG_INC) $(DEBUG_QGIS) $(GEOS_CFLAGS) $(GDAL_CFLAGS)
 
38
 
 
39
CLEANFILES = $(BUILT_SOURCES)