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

« back to all changes in this revision

Viewing changes to src/plugins/copyright_label/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
 
#CopyrightLabel below to be replaced with the name of the plugin
15
 
plugin_LTLIBRARIES = copyrightlabelplugin.la
16
 
 
17
 
%.moc.cpp: %.h
18
 
        $(MOC) -o $@ $<
19
 
 
20
 
ui_%.h: %.ui 
21
 
        $(UIC) -o $@ $<
22
 
 
23
 
%.qrc.cpp: %.qrc
24
 
        $(RCC) -o $@ $<
25
 
 
26
 
copyrightlabelplugin_la_SOURCES =  plugin.cpp \
27
 
                                                plugin.h \
28
 
                                                plugingui.cpp \
29
 
                                                plugingui.h \
30
 
                                                $(plugin_UI)\
31
 
                                                $(plugin_MOC) \
32
 
                                                $(plugin_QRC) \
33
 
                                                $(plugin_RES)
34
 
 
35
 
plugin_MOC = plugin.moc.cpp \
36
 
                         plugingui.moc.cpp 
37
 
 
38
 
plugin_UI = ui_pluginguibase.h 
39
 
 
40
 
plugin_UIC = pluginguibase.ui
41
 
 
42
 
plugin_RES = copyright_plugin.qrc.cpp
43
 
 
44
 
#plugin_QRC = copyright_plugin.qrc
45
 
 
46
 
# UI dependencies      
47
 
pluginguibase.cpp: pluginguibase.h pluginguibase.ui
48
 
 
49
 
BUILT_SOURCES = $(plugin_MOC) $(plugin_UI) $(plugin_RES)
50
 
 
51
 
 
52
 
copyrightlabelplugin_la_LIBADD = $(QT_LDADD) $(GDAL_LDADD) ../../gui/libqgis_gui.la ../../core/libqgis_core.la
53
 
copyrightlabelplugin_la_LDFLAGS = -avoid-version -module
54
 
copyrightlabelplugin_la_CXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(DEBUG_QGIS) $(GDAL_CFLAGS) $(GEOS_CFLAGS) -I../../gui -I../../ui -I../../core
55
 
 
56
 
CLEANFILES = $(BUILT_SOURCES)
57
 
 
58
 
EXTRA_DIST = $(plugin_UIC) icon.xpm \
59
 
        ui_pluginguibase.h