mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-06-01 20:58:26 +02:00
Rather than passing UDI, ifname, and driver name to the device constructors as separate arguments, just pass the NMPlatformLink instead and let it parse them out. Virtual types still take UDI and ifname separately, since we create fake NMDevices for them for autoactivating connections. That's weird in other ways too though, so perhaps this should be revisted.
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
INCLUDES = \
|
|
-I${top_srcdir}/src \
|
|
-I${top_builddir}/src \
|
|
-I${top_srcdir}/src/logging \
|
|
-I${top_srcdir}/src/devices \
|
|
-I${top_srcdir}/src/platform \
|
|
-I${top_builddir}/include \
|
|
-I${top_srcdir}/include \
|
|
-I${top_builddir}/libnm-util \
|
|
-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)
|
|
|
|
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)
|