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

« back to all changes in this revision

Viewing changes to src/plugins/delimited_text/Makefile.am

  • 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
 
# Copyright (C) 2003 Gary Sherman <sherman at mrcc.com>
2
 
#  
3
 
# This file is free software; as a special exception the author gives
4
 
# unlimited permission to copy and/or distribute it, with or without 
5
 
# modifications, as long as this notice is preserved.
6
 
7
 
# This program is distributed in the hope that it will be useful, but
8
 
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
9
 
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
 
#
11
 
# $Id: Makefile.am 6350 2006-12-30 02:15:25Z gsherman $
12
 
 
13
 
plugindir = ${pkglibdir}
14
 
 
15
 
 
16
 
%.moc.cpp: %.h
17
 
        $(MOC) -o $@ $<
18
 
 
19
 
ui_%.h: %.ui 
20
 
        $(UIC) -o $@ $<
21
 
 
22
 
%.qrc.cpp: %.qrc
23
 
        $(RCC) -o $@ $<
24
 
 
25
 
# DelimitedTextLayer below to be replaced with the name of the plugin
26
 
plugin_LTLIBRARIES = delimitedtextplugin.la
27
 
 
28
 
plugin_MOC = qgsdelimitedtextplugin.moc.cpp             \
29
 
             qgsdelimitedtextplugingui.moc.cpp          
30
 
 
31
 
plugin_UI = ui_qgsdelimitedtextpluginguibase.h 
32
 
 
33
 
plugin_UIC = qgsdelimitedtextpluginguibase.ui
34
 
 
35
 
#plugin_QRC = delimited_text.qrc
36
 
 
37
 
plugin_RES = delimited_text.qrc.cpp
38
 
 
39
 
delimitedtextplugin_la_SOURCES =  qgsdelimitedtextplugin.cpp    \
40
 
                                       qgsdelimitedtextplugin.h         \
41
 
                                       qgsdelimitedtextplugingui.cpp    \
42
 
                                       qgsdelimitedtextplugingui.h      \
43
 
                                       $(plugin_UI)                     \
44
 
                                       $(plugin_MOC) \
45
 
                                                         $(plugin_QRC) \
46
 
                                                         $(plugin_RES)
47
 
 
48
 
 
49
 
BUILT_SOURCES = $(plugin_MOC) $(plugin_UI) $(plugin_RES)
50
 
 
51
 
 
52
 
 
53
 
delimitedtextplugin_la_LIBADD = $(QT_LDADD) $(GDAL_LDADD) ../../gui/libqgis_gui.la ../../core/libqgis_core.la
54
 
delimitedtextplugin_la_LDFLAGS = -avoid-version -module
55
 
delimitedtextplugin_la_CXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(DEBUG_QGIS) $(GDAL_CFLAGS) $(GEOS_CFLAGS) -I../../core -I../../gui -I../../ui
56
 
 
57
 
CLEANFILES = $(BUILT_SOURCES)
58
 
 
59
 
EXTRA_DIST = $(plugin_UIC) icon.xpm
60