~ubuntu-branches/ubuntu/trusty/qgis/trusty

« back to all changes in this revision

Viewing changes to src/plugins/delimited_text/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 = $(wildcard *.o) 
6
 
 
7
 
PLUGIN = .libs/delimitedtextplugin.dll
8
 
 
9
 
all: objects $(PLUGIN)
10
 
 
11
 
objects:
12
 
        $(MAKE) -f Makefile 
13
 
 
14
 
$(PLUGIN): $(OBJECTS)
15
 
        $(CXX) -shared -o $@ \
16
 
                -Wl,--export-all-symbols \
17
 
                -Wl,--enable-auto-import \
18
 
                -Wl,--whole-archive $(OBJECTS) \
19
 
                -Wl,--no-whole-archive \
20
 
                        $(PLUGIN_LIBS)
21
 
        $(STRIP) $@ 
22
 
 
23
 
#                       ../../providers/grass/.libs/libqgisgrass.a \
24
 
 
25
 
install: all 
26
 
        $(INSTALL) -m 755 $(PLUGIN) $(prefix)/lib/qgis/delimitedtextplugin.dll
27
 
 
28
 
include $(QGTOP)/Makefile.win.rules