2012-05-07 15:19:09 -05:00
|
|
|
INCLUDES = \
|
|
|
|
|
-I$(top_srcdir)/src/settings \
|
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
|
-I$(top_builddir)/include \
|
|
|
|
|
-I$(top_srcdir)/libnm-util \
|
|
|
|
|
-I$(top_builddir)/libnm-util
|
|
|
|
|
|
|
|
|
|
# 'noinst' here because this is an example plugin we don't want to install
|
|
|
|
|
noinst_LTLIBRARIES = libnm-settings-plugin-example.la
|
|
|
|
|
|
|
|
|
|
# The actual plugins typically pull reader.c and writer.c out into
|
|
|
|
|
# their own static library so that unit tests can use them without
|
|
|
|
|
# having to build the entire plugin. But since this is a simple
|
|
|
|
|
# plugin we don't do that yet.
|
|
|
|
|
|
|
|
|
|
libnm_settings_plugin_example_la_SOURCES = \
|
|
|
|
|
nm-example-connection.c \
|
|
|
|
|
nm-example-connection.h \
|
|
|
|
|
plugin.c \
|
|
|
|
|
plugin.h \
|
|
|
|
|
errors.c \
|
|
|
|
|
common.h \
|
|
|
|
|
reader.c \
|
|
|
|
|
writer.c
|
|
|
|
|
|
|
|
|
|
libnm_settings_plugin_example_la_CPPFLAGS = \
|
|
|
|
|
$(GLIB_CFLAGS) \
|
|
|
|
|
$(GMODULE_CFLAGS) \
|
|
|
|
|
$(DBUS_CFLAGS) \
|
2012-10-31 19:40:01 +01:00
|
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
2012-05-07 15:19:09 -05:00
|
|
|
|
|
|
|
|
libnm_settings_plugin_example_la_LIBADD = \
|
|
|
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
|
|
|
$(GLIB_LIBS) \
|
|
|
|
|
$(GMODULE_LIBS) \
|
|
|
|
|
$(GIO_LIBS)
|
|
|
|
|
|
2012-05-14 15:51:31 -05:00
|
|
|
libnm_settings_plugin_example_la_LDFLAGS = -module -avoid-version
|
2012-05-07 15:19:09 -05:00
|
|
|
|