2014-09-10 13:51:53 -04:00
|
|
|
noinst_LTLIBRARIES = \
|
|
|
|
|
libnmdbus.la
|
|
|
|
|
|
|
|
|
|
# gdbus-codegen 2.38 will emit code that requires glib 2.38, which
|
|
|
|
|
# will then cause availability warnings if we define
|
|
|
|
|
# GLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_32.
|
|
|
|
|
#
|
|
|
|
|
# This is fixed in GLib 2.40 (it emits code that takes
|
|
|
|
|
# GLIB_VERSION_MAX_ALLOWED into account), so this workaround can go
|
|
|
|
|
# away when we depend on that.
|
|
|
|
|
AM_CPPFLAGS = $(filter-out -DGLIB_VERSION_MAX_ALLOWED%,$(GLIB_CFLAGS))
|
|
|
|
|
|
|
|
|
|
nodist_libnmdbus_la_SOURCES = \
|
|
|
|
|
nmdbus-access-point.c \
|
|
|
|
|
nmdbus-access-point.h \
|
|
|
|
|
nmdbus-active-connection.c \
|
|
|
|
|
nmdbus-active-connection.h \
|
|
|
|
|
nmdbus-agent-manager.c \
|
|
|
|
|
nmdbus-agent-manager.h \
|
2015-04-14 09:40:49 -04:00
|
|
|
nmdbus-device-adsl.c \
|
|
|
|
|
nmdbus-device-adsl.h \
|
2014-09-10 13:51:53 -04:00
|
|
|
nmdbus-device-bond.c \
|
|
|
|
|
nmdbus-device-bond.h \
|
|
|
|
|
nmdbus-device-bridge.c \
|
|
|
|
|
nmdbus-device-bridge.h \
|
|
|
|
|
nmdbus-device-bt.c \
|
|
|
|
|
nmdbus-device-bt.h \
|
|
|
|
|
nmdbus-device-ethernet.c \
|
|
|
|
|
nmdbus-device-ethernet.h \
|
|
|
|
|
nmdbus-device.c \
|
|
|
|
|
nmdbus-device.h \
|
|
|
|
|
nmdbus-device-generic.c \
|
|
|
|
|
nmdbus-device-generic.h \
|
|
|
|
|
nmdbus-device-infiniband.c \
|
|
|
|
|
nmdbus-device-infiniband.h \
|
2015-10-30 15:14:23 +01:00
|
|
|
nmdbus-device-ip-tunnel.c \
|
|
|
|
|
nmdbus-device-ip-tunnel.h \
|
2014-09-10 13:51:53 -04:00
|
|
|
nmdbus-device-macvlan.c \
|
|
|
|
|
nmdbus-device-macvlan.h \
|
2015-04-14 09:40:49 -04:00
|
|
|
nmdbus-device-modem.c \
|
|
|
|
|
nmdbus-device-modem.h \
|
|
|
|
|
nmdbus-device-olpc-mesh.c \
|
|
|
|
|
nmdbus-device-olpc-mesh.h \
|
|
|
|
|
nmdbus-device-team.c \
|
|
|
|
|
nmdbus-device-team.h \
|
2014-09-10 13:51:53 -04:00
|
|
|
nmdbus-device-tun.c \
|
|
|
|
|
nmdbus-device-tun.h \
|
|
|
|
|
nmdbus-device-veth.c \
|
|
|
|
|
nmdbus-device-veth.h \
|
|
|
|
|
nmdbus-device-vlan.c \
|
|
|
|
|
nmdbus-device-vlan.h \
|
|
|
|
|
nmdbus-device-vxlan.c \
|
|
|
|
|
nmdbus-device-vxlan.h \
|
|
|
|
|
nmdbus-device-wifi.c \
|
|
|
|
|
nmdbus-device-wifi.h \
|
|
|
|
|
nmdbus-device-wimax.c \
|
|
|
|
|
nmdbus-device-wimax.h \
|
|
|
|
|
nmdbus-dhcp4-config.c \
|
|
|
|
|
nmdbus-dhcp4-config.h \
|
|
|
|
|
nmdbus-dhcp6-config.c \
|
|
|
|
|
nmdbus-dhcp6-config.h \
|
|
|
|
|
nmdbus-ip4-config.c \
|
|
|
|
|
nmdbus-ip4-config.h \
|
|
|
|
|
nmdbus-ip6-config.c \
|
|
|
|
|
nmdbus-ip6-config.h \
|
|
|
|
|
nmdbus-manager.c \
|
|
|
|
|
nmdbus-manager.h \
|
|
|
|
|
nmdbus-ppp-manager.c \
|
|
|
|
|
nmdbus-ppp-manager.h \
|
|
|
|
|
nmdbus-secret-agent.c \
|
|
|
|
|
nmdbus-secret-agent.h \
|
|
|
|
|
nmdbus-settings-connection.c \
|
|
|
|
|
nmdbus-settings-connection.h \
|
|
|
|
|
nmdbus-settings.c \
|
|
|
|
|
nmdbus-settings.h \
|
|
|
|
|
nmdbus-vpn-connection.c \
|
|
|
|
|
nmdbus-vpn-connection.h \
|
|
|
|
|
nmdbus-vpn-plugin.c \
|
|
|
|
|
nmdbus-vpn-plugin.h
|
|
|
|
|
|
|
|
|
|
define _make_nmdbus_rule
|
|
|
|
|
$(1): $(patsubst nmdbus-%.c,nm-%.xml,$(1))
|
|
|
|
|
$$(AM_V_GEN) gdbus-codegen \
|
|
|
|
|
--generate-c-code $$(basename $$@) \
|
|
|
|
|
--c-namespace NMDBus \
|
|
|
|
|
--interface-prefix org.freedesktop.NetworkManager \
|
|
|
|
|
$$<
|
|
|
|
|
|
|
|
|
|
$(basename $(1)).h: $(1)
|
|
|
|
|
@true
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
$(foreach f,$(filter %.c,$(nodist_libnmdbus_la_SOURCES)),$(eval $(call _make_nmdbus_rule,$f)))
|
|
|
|
|
|
|
|
|
|
CLEANFILES = $(nodist_libnmdbus_la_SOURCES)
|
|
|
|
|
|
2008-08-28 14:12:09 +00:00
|
|
|
EXTRA_DIST = \
|
2011-08-06 10:59:19 +02:00
|
|
|
all.xml.in \
|
2008-08-28 14:12:09 +00:00
|
|
|
generic-types.xml \
|
|
|
|
|
errors.xml \
|
|
|
|
|
vpn-errors.xml \
|
|
|
|
|
nm-access-point.xml \
|
2014-09-05 14:18:15 -04:00
|
|
|
nm-active-connection.xml \
|
|
|
|
|
nm-agent-manager.xml \
|
2011-05-17 21:03:18 +03:00
|
|
|
nm-device-adsl.xml \
|
2012-02-15 17:31:37 -06:00
|
|
|
nm-device-bond.xml \
|
2012-10-29 19:02:45 -05:00
|
|
|
nm-device-bridge.xml \
|
2014-09-05 14:18:15 -04:00
|
|
|
nm-device-bt.xml \
|
|
|
|
|
nm-device-ethernet.xml \
|
2013-04-17 10:41:15 -04:00
|
|
|
nm-device-generic.xml \
|
2014-09-05 14:18:15 -04:00
|
|
|
nm-device-infiniband.xml \
|
2015-10-30 15:14:23 +01:00
|
|
|
nm-device-ip-tunnel.xml \
|
2013-05-06 09:16:17 -04:00
|
|
|
nm-device-macvlan.xml \
|
2014-09-05 14:18:15 -04:00
|
|
|
nm-device-modem.xml \
|
|
|
|
|
nm-device-olpc-mesh.xml \
|
|
|
|
|
nm-device-team.xml \
|
|
|
|
|
nm-device-tun.xml \
|
|
|
|
|
nm-device-veth.xml \
|
|
|
|
|
nm-device-vlan.xml \
|
2013-06-04 10:31:22 -03:00
|
|
|
nm-device-vxlan.xml \
|
2014-09-05 14:18:15 -04:00
|
|
|
nm-device-wifi.xml \
|
|
|
|
|
nm-device-wimax.xml \
|
2008-08-28 14:12:09 +00:00
|
|
|
nm-device.xml \
|
2014-09-05 14:18:15 -04:00
|
|
|
nm-dhcp4-config.xml \
|
|
|
|
|
nm-dhcp6-config.xml \
|
2008-08-28 14:12:09 +00:00
|
|
|
nm-ip4-config.xml \
|
2009-08-04 14:55:22 -04:00
|
|
|
nm-ip6-config.xml \
|
2008-08-28 14:12:09 +00:00
|
|
|
nm-manager.xml \
|
2014-09-05 14:18:15 -04:00
|
|
|
nm-ppp-manager.xml \
|
|
|
|
|
nm-secret-agent.xml \
|
2011-01-26 11:38:12 -06:00
|
|
|
nm-settings-connection.xml \
|
2014-09-05 14:18:15 -04:00
|
|
|
nm-settings.xml \
|
2008-08-28 14:12:09 +00:00
|
|
|
nm-vpn-connection.xml \
|
2014-09-05 14:18:15 -04:00
|
|
|
nm-vpn-plugin.xml \
|
|
|
|
|
nm-wimax-nsp.xml
|