settings: move agent code into settings directory

Since that's where it's used, and it doesn't need to be exposed
to any other code.
This commit is contained in:
Dan Williams 2011-01-30 11:00:33 -06:00
parent 5a7cf39a62
commit 3a97939525
6 changed files with 12 additions and 12 deletions

View file

@ -175,11 +175,7 @@ NetworkManager_SOURCES = \
nm-dhcp6-config.h \
nm-rfkill.h \
nm-session-monitor.c \
nm-session-monitor.h \
nm-agent-manager.c \
nm-agent-manager.h \
nm-secret-agent.c \
nm-secret-agent.h
nm-session-monitor.h
nm-access-point-glue.h: $(top_srcdir)/introspection/nm-access-point.xml
$(AM_V_GEN) dbus-binding-tool --prefix=nm_access_point --mode=glib-server --output=$@ $<
@ -223,9 +219,6 @@ nm-device-cdma-glue.h: $(top_srcdir)/introspection/nm-device-cdma.xml
nm-device-gsm-glue.h: $(top_srcdir)/introspection/nm-device-gsm.xml
$(AM_V_GEN) dbus-binding-tool --prefix=nm_device_gsm --mode=glib-server --output=$@ $<
nm-agent-manager-glue.h: $(top_srcdir)/introspection/nm-agent-manager.xml
$(AM_V_GEN) dbus-binding-tool --prefix=nm_agent_manager --mode=glib-server --output=$@ $<
BUILT_SOURCES = \
nm-access-point-glue.h \
nm-manager-glue.h \
@ -240,8 +233,7 @@ BUILT_SOURCES = \
nm-ip6-config-glue.h \
nm-active-connection-glue.h \
nm-dhcp4-config-glue.h \
nm-dhcp6-config-glue.h \
nm-agent-manager-glue.h
nm-dhcp6-config-glue.h
NetworkManager_CPPFLAGS = \
$(DBUS_CFLAGS) \

View file

@ -9,7 +9,8 @@ noinst_LTLIBRARIES = libsettings.la
BUILT_SOURCES = \
nm-settings-glue.h \
nm-settings-connection-glue.h
nm-settings-connection-glue.h \
nm-agent-manager-glue.h
libsettings_la_SOURCES = \
nm-settings.c \
@ -24,7 +25,11 @@ libsettings_la_SOURCES = \
nm-settings-connection.c \
nm-settings-connection.h \
nm-default-wired-connection.c \
nm-default-wired-connection.h
nm-default-wired-connection.h \
nm-agent-manager.c \
nm-agent-manager.h \
nm-secret-agent.c \
nm-secret-agent.h
libsettings_la_CPPFLAGS = \
$(DBUS_CFLAGS) \
@ -59,6 +64,9 @@ nm-settings-glue.h: $(top_srcdir)/introspection/nm-settings.xml
nm-settings-connection-glue.h: $(top_srcdir)/introspection/nm-settings-connection.xml
$(AM_V_GEN) dbus-binding-tool --prefix=nm_settings_connection --mode=glib-server --output=$@ $<
nm-agent-manager-glue.h: $(top_srcdir)/introspection/nm-agent-manager.xml
$(AM_V_GEN) dbus-binding-tool --prefix=nm_agent_manager --mode=glib-server --output=$@ $<
CLEANFILES = \
$(BUILT_SOURCES)