Files
gnucash/libgnucash/gnc-module/example/Makefile.am
Geert Janssens 3e3eead3c5 Eliminate plugins directory
bi-import and customer-import have been put with the other importers
example is moved to gnc-module as, well, an example
2017-08-14 18:17:13 +02:00

38 lines
959 B
Makefile

SUBDIRS = ui glade .
pkglib_LTLIBRARIES = libgncmod-example.la
libgncmod_example_la_SOURCES = \
gnc-plugin-example.c \
gncmod-example.c
noinst_HEADERS = \
gnc-plugin-example.h
libgncmod_example_la_LDFLAGS = -avoid-version
libgncmod_example_la_LIBADD = \
${top_builddir}/libgnucash/gnc-module/libgnc-module.la \
${GNOME_LIBS} \
${GLADE_LIBS} \
${GLIB_LIBS} \
${AQBANKING_LIBS}
AM_CFLAGS = \
-I${top_srcdir}/common \
-I${top_srcdir}/gnucash/gnome \
-I${top_srcdir}/gnucash/register/ledger-core \
-I${top_srcdir}/gnucash/register/register-gnome \
-I${top_srcdir}/gnucash/register/register-core \
-I${top_srcdir}/gnucash/gnome-utils \
-I${top_srcdir}/libgnucash/app-utils \
-I${top_srcdir}/libgnucash/engine \
-I${top_srcdir}/libgnucash/core-utils \
-I${top_srcdir}/libgnucash/gnc-module \
${GNOME_CFLAGS} \
${GLADE_CFLAGS} \
${GLIB_CFLAGS} \
${AQBANKING_CFLAGS}
INCLUDES = -DG_LOG_DOMAIN=\"gnc.plugin.example\"