~ubuntu-branches/ubuntu/wily/qgis/wily

« back to all changes in this revision

Viewing changes to src/providers/delimitedtext/Makefile.win

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
QGTOP=../../../
2
 
 
3
 
LDADD = $(PLUGIN_LIBS) 
4
 
 
5
 
OBJECTS = delimitedtextprovider_la-qgsdelimitedtextprovider.o
6
 
 
7
 
PROVIDER = .libs/delimitedtextprovider.dll
8
 
 
9
 
all: objects $(PROVIDER)
10
 
 
11
 
objects:
12
 
        $(MAKE) -f Makefile
13
 
 
14
 
$(PROVIDER): $(OBJECTS)
15
 
        $(CXX) -shared -o $@ \
16
 
                -Wl,--export-all-symbols \
17
 
                -Wl,--enable-auto-import \
18
 
                -Wl,--enable-runtime-pseudo-reloc \
19
 
                -Wl,--whole-archive delimitedtextprovider_la-qgsdelimitedtextprovider.o \
20
 
                -Wl,--no-whole-archive \
21
 
                        $(CORE_DLL) $(GUI_DLL) $(CORE_DLL) \
22
 
                        $(RASTER_DLL) $(PROJSEL_DLL) $(LEGEND_DLL) \
23
 
                        $(GUI_DLL) $(CORE_DLL) $(COMPOSER_DLL) $(GUI_DLL) \
24
 
                        -lgdal -lgeos -lsqlite3 -lproj $(PG_LIB) \
25
 
                        $(QT_LDADD) \
26
 
                        -lwsock32 -lmingw32
27
 
        $(STRIP) $@ 
28
 
 
29
 
install: all
30
 
        mkdir -p $(prefix)/lib/qgis/
31
 
        $(INSTALL) -m 755 .libs/delimitedtextprovider.dll $(prefix)/lib/qgis/delimitedtextprovider.dll
32
 
 
33
 
include ../../../Makefile.win.rules