summary refs log tree commit diff
path: root/src/wifi/Makefile.am
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2012-03-24 01:37:02 +0100
committerMichael Biebl <biebl@debian.org>2012-03-24 01:37:02 +0100
commitde06e5715e780baade318f3490ac7a4c9ce84e32 (patch)
tree23fbc3fafc12072476eff98bee60100eb54c29db /src/wifi/Makefile.am
parentb436a68a20ff3114ded32a7a3d70cdd4954039f9 (diff)
Imported Upstream version 0.9.4.0 upstream/0.9.4.0
Diffstat (limited to 'src/wifi/Makefile.am')
-rw-r--r--src/wifi/Makefile.am31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/wifi/Makefile.am b/src/wifi/Makefile.am
new file mode 100644
index 00000000..c9a1b474
--- /dev/null
+++ b/src/wifi/Makefile.am
@@ -0,0 +1,31 @@
+INCLUDES = \
+	-I${top_srcdir}/include \
+	-I${top_builddir}/include \
+	-I${top_srcdir}/src/logging \
+	-I${top_srcdir}/libnm-util \
+	-I${top_builddir}/libnm-util \
+	-I${top_srcdir}/src
+
+noinst_LTLIBRARIES = libwifi-utils.la
+
+libwifi_utils_la_SOURCES = \
+	wifi-utils.c \
+	wifi-utils.h \
+	wifi-utils-private.h \
+	wifi-utils-nl80211.c \
+	wifi-utils-nl80211.h
+
+if WITH_WEXT
+libwifi_utils_la_SOURCES += wifi-utils-wext.c wifi-utils-wext.h
+endif
+
+libwifi_utils_la_CPPFLAGS = \
+	$(GLIB_CFLAGS) \
+	$(LIBNL_CFLAGS)
+
+libwifi_utils_la_LIBADD = \
+	$(top_builddir)/src/logging/libnm-logging.la \
+	$(top_builddir)/libnm-util/libnm-util.la \
+	$(GLIB_LIBS) \
+	$(LIBNL_LIBS)
+