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
|
CFLAGS+=-rdynamic
AM_CXXFLAGS=-rdynamic
pkglib_LTLIBRARIES=liblinux_utilities.la
liblinux_utilities_la_LIBADD=$(top_srcdir)/frontend/linux/sqlide/libsqlide.la\
$(top_srcdir)/ext/scintilla/gtk/libwbscintilla.la
INCLUDES=@GLIB_CFLAGS@ @SIGC_CFLAGS@ @GRT_CFLAGS@ @CAIRO_CFLAGS@ @GNOME_CFLAGS@\
-I$(top_srcdir)/library/grt/src -I$(top_srcdir)/library/base\
-I$(top_srcdir)/backend/wbpublic -I$(top_srcdir)/generated -I$(top_srcdir)/library/canvas/src\
-I$(top_srcdir)/frontend/linux/workbench\
-I$(top_srcdir)/frontend/linux/sqlide\
-I$(top_srcdir)/ext/scintilla/include\
-I$(top_srcdir)/ext\
-I$(top_srcdir)/library/forms\
-I$(top_srcdir)/library/forms/gtk\
-I$(top_srcdir)/generated/grti\
-I$(top_srcdir)/library/forms/mforms
liblinux_utilities_la_SOURCES=\
custom_renderers.cpp\
active_label.cpp\
listmodel_wrapper.cpp\
form_view_base.cpp\
treemodel_wrapper.cpp\
plugin_editor_base.cpp\
image_cache.cpp\
gtk_helpers.cpp\
multi_view.cpp\
editable_iconview.cpp\
auto_completable.cpp\
widgets_auto_cleaner.cpp\
widget_saver.cpp\
notebooks.cpp
|