~ubuntu-branches/ubuntu/maverick/qgis/maverick

« back to all changes in this revision

Viewing changes to src/widgets/projectionselector/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
 
DLL=qgis_projsel.dll
4
 
 
5
 
all: libs $(DLL)
6
 
 
7
 
libs:
8
 
        $(MAKE) -f Makefile libqgsprojectionselector.la
9
 
 
10
 
$(DLL): .libs/libqgsprojectionselector.a
11
 
        $(CXX) -shared -o $(DLL) \
12
 
                -Wl,--out-implib=lib$(DLL).a \
13
 
                -Wl,--export-all-symbols \
14
 
                -Wl,--enable-auto-import \
15
 
                -Wl,--whole-archive .libs/libqgsprojectionselector.a \
16
 
                -Wl,--no-whole-archive \
17
 
                        $(CORE_A) \
18
 
                        -lsqlite3 \
19
 
                        $(QT_LDADD) \
20
 
                        -lmingw32
21
 
        $(STRIP) $@
22
 
 
23
 
install: all
24
 
        $(INSTALL) -m 755 $(DLL) $(DLLDIR)/$(DLL)
25
 
 
26
 
include $(QGTOP)/Makefile.win.rules