about summary refs log tree commit diff
path: root/src/wimax/Makefile.am
blob: 63c95dc71f30a0d23c34c181ede8c268f58e9f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
INCLUDES = \
	-I${top_srcdir}/src \
	-I${top_srcdir}/src/generated \
	-I${top_srcdir}/src/logging \
	-I${top_srcdir}/include \
	-I${top_srcdir}/libnm-util

pkglib_LTLIBRARIES = libnm-device-plugin-wimax.la

libnm_device_plugin_wimax_la_SOURCES = \
	nm-wimax-factory.c \
	nm-device-wimax.c \
	nm-device-wimax.h \
	nm-wimax-nsp.c \
	nm-wimax-nsp.h \
	nm-wimax-types.h \
	nm-wimax-util.c \
	nm-wimax-util.h \
	iwmxsdk.c \
	iwmxsdk.h

libnm_device_plugin_wimax_la_CPPFLAGS = \
	$(DBUS_CFLAGS) \
	$(IWMX_SDK_CFLAGS) \
	$(LIBNL_CFLAGS) \
	$(GUDEV_CFLAGS)

libnm_device_plugin_wimax_la_LDFLAGS = -module -avoid-version
libnm_device_plugin_wimax_la_LIBADD = \
	$(DBUS_LIBS) \
	$(IWMX_SDK_LIBS) \
	$(GUDEV_LIBS) \
	$(top_builddir)/src/generated/libnm-generated.la

nm-wimax-nsp-glue.h: $(top_srcdir)/introspection/nm-wimax-nsp.xml
	dbus-binding-tool --prefix=nm_wimax_nsp --mode=glib-server --output=$@ $<

nm-device-wimax-glue.h: $(top_srcdir)/introspection/nm-device-wimax.xml
	dbus-binding-tool --prefix=nm_device_wimax --mode=glib-server --output=$@ $<

BUILT_SOURCES = \
	nm-wimax-nsp-glue.h \
	nm-device-wimax-glue.h

CLEANFILES = $(BUILT_SOURCES)