diff options
Diffstat (limited to 'src/dnsmasq-manager/Makefile.am')
| -rw-r--r-- | src/dnsmasq-manager/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/dnsmasq-manager/Makefile.am b/src/dnsmasq-manager/Makefile.am new file mode 100644 index 00000000..66bbdd83 --- /dev/null +++ b/src/dnsmasq-manager/Makefile.am @@ -0,0 +1,19 @@ +INCLUDES = \ + -I${top_srcdir}/libnm-util \ + -I${top_srcdir}/src/logging \ + -I${top_srcdir}/src \ + -I${top_srcdir}/include + +noinst_LTLIBRARIES = libdnsmasq-manager.la + +libdnsmasq_manager_la_SOURCES = \ + nm-dnsmasq-manager.h \ + nm-dnsmasq-manager.c + +libdnsmasq_manager_la_CPPFLAGS = \ + $(GLIB_CFLAGS) \ + -DLOCALSTATEDIR=\"$(localstatedir)\" + +libdnsmasq_manager_la_LIBADD = \ + $(top_builddir)/src/logging/libnm-logging.la \ + $(GLIB_LIBS) |