summary refs log tree commit diff
path: root/src/supplicant-manager/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'src/supplicant-manager/Makefile.am')
-rw-r--r--src/supplicant-manager/Makefile.am35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/supplicant-manager/Makefile.am b/src/supplicant-manager/Makefile.am
new file mode 100644
index 00000000..e59ae843
--- /dev/null
+++ b/src/supplicant-manager/Makefile.am
@@ -0,0 +1,35 @@
+SUBDIRS=. tests
+
+INCLUDES = \
+	-I${top_srcdir}/src \
+	-I${top_srcdir}/src/logging \
+	-I${top_srcdir}/include \
+	-I${top_srcdir}/libnm-util \
+	-I${top_builddir}/marshallers \
+	-I${top_srcdir}/src/named-manager
+
+noinst_LTLIBRARIES = libsupplicant-manager.la
+
+libsupplicant_manager_la_SOURCES = \
+	nm-supplicant-types.h \
+	nm-supplicant-manager.h \
+	nm-supplicant-manager.c \
+	nm-supplicant-config.h \
+	nm-supplicant-config.c \
+	nm-supplicant-interface.c \
+	nm-supplicant-interface.h \
+	nm-supplicant-settings-verify.h \
+	nm-supplicant-settings-verify.c
+
+libsupplicant_manager_la_CPPFLAGS = \
+	$(DBUS_CFLAGS) \
+	$(GLIB_CFLAGS) \
+	-DNM_PKGDATADIR=\"$(pkgdatadir)\" \
+	-DNM_LOCALSTATEDIR=\"$(localstatedir)\"
+
+libsupplicant_manager_la_LIBADD = \
+	$(top_builddir)/marshallers/libmarshallers.la \
+	$(top_builddir)/src/logging/libnm-logging.la \
+	$(DBUS_LIBS) \
+	$(GLIB_LIBS)
+