1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
pkglib_LTLIBRARIES=db.mysql.editors.wbp.la
pkglibdir=$(libdir)/@PACKAGE@/plugins
plugindatadir=$(pkgdatadir)/modules/data
plugindata_DATA=res/editor_mysql_table.glade\
res/editor_mysql_table_live.glade\
res/editor_view.glade\
res/editor_user.glade\
res/editor_role.glade\
res/editor_relationship.glade\
res/editor_routine.glade\
res/editor_rg.glade\
res/editor_schema.glade\
res/live_editor_decoration.glade
INCLUDES=-I$(top_srcdir)/generated -I$(top_srcdir)/backend/wbpublic -I$(top_srcdir)/library/grt/src \
-I$(top_srcdir)/library/base\
-I$(top_srcdir)/library/dbc/common/src\
-I$(top_srcdir)/modules/interfaces\
-I$(top_srcdir)/library/grt/src/diff\
-I$(top_srcdir)/library/sql-parser/include\
-I$(top_srcdir)/library/sql-parser/source\
-I$(top_srcdir)/ext/vsqlite++/include\
-I$(top_srcdir)/plugins\
-I$(top_srcdir)/modules\
-I$(top_srcdir)/frontend/linux\
-I$(top_srcdir)/frontend/linux/workbench\
-I$(top_srcdir)/frontend/linux/linux_utilities\
-I$(top_srcdir)/frontend/linux/sqlide\
-I$(top_srcdir)/ext/scintilla/include\
@GRT_CFLAGS@ @GLIB_CFLAGS@ @GNOME_CFLAGS@ @SIGC_CFLAGS@
db_mysql_editors_wbp_la_LDFLAGS=-module
db_mysql_editors_wbp_la_LIBADD=$(top_srcdir)/frontend/linux/linux_utilities/liblinux_utilities.la\
$(top_srcdir)/ext/scintilla/gtk/libwbscintilla.la
db_mysql_editors_wbp_la_SOURCES=\
../backend/mysql_relationship_editor.cpp\
../backend/mysql_routine_editor.cpp\
../backend/mysql_routinegroup_editor.cpp\
../backend/mysql_schema_editor.cpp\
../backend/mysql_table_editor.cpp\
../backend/mysql_view_editor.cpp\
../backend/register_plugin.cpp\
./mysql_table_editor_fe.cpp\
./mysql_table_editor_column_page.cpp\
./mysql_view_editor_fe.cpp\
./mysql_user_editor_fe.cpp\
./mysql_role_editor_fe.cpp\
./mysql_relationship_editor_fe.cpp\
./mysql_routine_editor_fe.cpp\
./mysql_routinegroup_editor_fe.cpp\
./mysql_table_editor_index_page.cpp\
./mysql_table_editor_fk_page.cpp\
./mysql_table_editor_trigger_page.cpp\
./mysql_table_editor_part_page.cpp\
./mysql_table_editor_opt_page.cpp\
./mysql_editor_priv_page.cpp\
./schema_editor_fe.cpp
|