~ubuntu-branches/ubuntu/quantal/mysql-workbench/quantal

« back to all changes in this revision

Viewing changes to plugins/wb.model.editors/linux/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-03-01 21:57:30 UTC
  • Revision ID: package-import@ubuntu.com-20120301215730-o7y8av8y38n162ro
Tags: upstream-5.2.38+dfsg
ImportĀ upstreamĀ versionĀ 5.2.38+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
pkglib_LTLIBRARIES=wb.model.editors.wbp.la
 
4
pkglibdir=$(libdir)/@PACKAGE@/plugins
 
5
plugindatadir=$(pkgdatadir)/modules/data
 
6
 
 
7
plugindata_DATA=res/editor_note.glade\
 
8
                res/editor_storednote.glade\
 
9
                res/editor_layer.glade\
 
10
                res/editor_image.glade
 
11
 
 
12
INCLUDES=-I$(top_srcdir)/generated -I$(top_srcdir)/backend/wbpublic -I$(top_srcdir)/library/grt/src \
 
13
                -I$(top_srcdir)/library/base\
 
14
                -I$(top_srcdir)/library/forms\
 
15
                -I$(top_srcdir)/modules/interfaces\
 
16
                -I$(top_srcdir)/plugins\
 
17
                -I$(top_srcdir)/ext\
 
18
                -I$(top_srcdir)/frontend/linux\
 
19
                -I$(top_srcdir)/frontend/linux/linux_utilities\
 
20
                -I$(top_srcdir)/modules\
 
21
                @GRT_CFLAGS@ @GLIB_CFLAGS@ @SIGC_CFLAGS@ @GNOME_CFLAGS@
 
22
 
 
23
 
 
24
wb_model_editors_wbp_la_LDFLAGS=-module
 
25
wb_model_editors_wbp_la_LIBADD=$(top_srcdir)/frontend/linux/linux_utilities/liblinux_utilities.la
 
26
 
 
27
wb_model_editors_wbp_la_SOURCES=\
 
28
../backend/register_plugin.cpp\
 
29
../backend/wb_editor_image.cpp\
 
30
../backend/wb_editor_note.cpp\
 
31
../backend/wb_editor_layer.cpp\
 
32
../backend/wb_editor_storednote.cpp\
 
33
editor_note_fe.cpp\
 
34
editor_image_fe.cpp\
 
35
editor_layer_fe.cpp\
 
36
editor_stored_note_fe.cpp
 
37