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

« back to all changes in this revision

Viewing changes to src/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
 
# We have to run first standard build system (stdsubdirs) which 
2
 
# creates static libraries (.libs/libqgis_xxx.a)
3
 
# then we run win32 specific makefiles which generates DLL
4
 
 
5
 
all: stdsubdirs guilib winsubdirs
6
 
 
7
 
include ../Makefile.win.rules
8
 
 
9
 
STDSUBDIRS = core ui legend raster composer widgets helpviewer
10
 
#providers plugins
11
 
 
12
 
WINSUBDIRS = core legend raster composer \
13
 
             widgets/projectionselector gui \
14
 
        providers/ogr \
15
 
        providers/wms \
16
 
        providers/gpx \
17
 
        providers/delimitedtext \
18
 
        plugins/north_arrow \
19
 
        plugins/copyright_label \
20
 
        plugins/scale_bar \
21
 
        plugins/georeferencer \
22
 
        plugins/grid_maker \
23
 
        plugins/delimited_text \
24
 
        plugins/gps_importer
25
 
 
26
 
ifneq ($(PG_LIB),)
27
 
    WINSUBDIRS += plugins/geoprocessing
28
 
    WINSUBDIRS += plugins/spit
29
 
endif
30
 
 
31
 
ifneq ($(GRASS_BASE),)
32
 
    WINSUBDIRS += providers/grass plugins/grass
33
 
endif
34
 
 
35
 
ifneq ($(PG_LIB),)
36
 
    WINSUBDIRS += providers/postgres
37
 
endif
38
 
 
39
 
guilib:
40
 
        $(MAKE) -C gui -f Makefile libqgis_gui.la
41
 
 
42
 
install: all
43
 
        @list='$(WINSUBDIRS)'; \
44
 
        for subdir in $$list; do \
45
 
            echo !!!!!!!!!!!!!!!!!!!! $$subdir !!!!!!!!!!!!!!!!!!!!; \
46
 
            $(MAKE) -C $$subdir -f Makefile.win install || exit 1 ; \
47
 
        done
48