diff options
| author | Michael Biebl <biebl@debian.org> | 2010-11-29 00:47:11 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2010-11-29 00:47:11 +0100 |
| commit | 9fae01fa351805b2903e535736e06971bc0b925e (patch) | |
| tree | c19bccf84c9f894e50fae678ba6ee2b2044e2d30 /src/vpn-manager/Makefile.am | |
Imported Upstream version 0.8.1 upstream/0.8.1
Diffstat (limited to 'src/vpn-manager/Makefile.am')
| -rw-r--r-- | src/vpn-manager/Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/vpn-manager/Makefile.am b/src/vpn-manager/Makefile.am new file mode 100644 index 00000000..56e4a4ce --- /dev/null +++ b/src/vpn-manager/Makefile.am @@ -0,0 +1,46 @@ +INCLUDES = \ + -I${top_srcdir} \ + -I${top_srcdir}/include \ + -I${top_srcdir}/libnm-util \ + -I${top_srcdir}/src/logging \ + -I${top_srcdir}/src \ + -I${top_builddir}/marshallers \ + -I${top_srcdir}/src/named-manager \ + -DVPN_NAME_FILES_DIR=\""$(sysconfdir)/NetworkManager/VPN"\" + + +noinst_LTLIBRARIES = libvpn-manager.la + +libvpn_manager_la_SOURCES = \ + nm-vpn-manager.c \ + nm-vpn-manager.h \ + nm-vpn-service.c \ + nm-vpn-service.h \ + nm-vpn-connection.c \ + nm-vpn-connection.h + +libvpn_manager_la_CPPFLAGS = \ + $(DBUS_CFLAGS) \ + $(GLIB_CFLAGS) \ + -DG_DISABLE_DEPRECATED + +libvpn_manager_la_LIBADD = \ + $(top_builddir)/marshallers/libmarshallers.la \ + $(top_builddir)/src/logging/libnm-logging.la \ + $(top_builddir)/libnm-util/libnm-util.la \ + $(DBUS_LIBS) \ + $(GLIB_LIBS) + +nm-vpn-connection-glue.h: $(top_srcdir)/introspection/nm-vpn-connection.xml + dbus-binding-tool --prefix=nm_vpn_connection --mode=glib-server --output=$@ $< + +nm-vpn-plugin-bindings.h: $(top_srcdir)/introspection/nm-vpn-plugin.xml + dbus-binding-tool --prefix=nm_vpn_plugin --mode=glib-client --output=$@ $< + + +BUILT_SOURCES = \ + nm-vpn-connection-glue.h \ + nm-vpn-plugin-bindings.h + +CLEANFILES = $(BUILT_SOURCES) + |