mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-22 01:58:10 +02:00
vpnc/: * properties/Makefile.am: Include new files pcf-file.[ch] in build. Add NetworkManager to CFLAGS and LDADD. * properties/pcf-file.c: Implement. * properties/pcf-file.h: Ditto. * properties/nm-vpnc.c (import_from_file): Rewrite using new Cisco PCF file parser instead of using GKeyFile (which has slightly different semantics). * src/Makefile.am: Add NetworkManager to CFLAGS and LDADD. * src/nm-vpnc-service.c: Remove the leading NetworkManager directory from NM includes since the NM pkg-config file already adds that. * src/nm-vpnc-service-vpnc-helper.c: Ditto. openvpn/: * properties/Makefile.am: Add NetworkManager to CFLAGS and LDADD. * src/Makefile.am: Ditto. * properties/nm-openvpn.c: Remove the leading NetworkManager directory from NM includes since the NM pkg-config file already adds that. * src/nm-openvpn-service-openvpn-helper.c: Ditto. * src/nm-openvpn-service.c: Ditto. pptp/: * src/nm-pppd-plugin.c: Remove the leading NetworkManager directory from NM includes since the NM pkg-config file already adds that. * properties/vpnui_impl.c: Ditto. * properties/vpnui_impl.h: Ditto. * src/nm-ppp-starter.c: Ditto. * src/Makefile.am: Add NetworkManager to CFLAGS and LDADD. * properties/Makefile.am: Add NetworkManager to CFLAGS and LDADD. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2093 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
INCLUDES = -I${top_srcdir} \
|
|
-I${top_srcdir}/utils \
|
|
-I${top_srcdir}/vpn-daemons/pptp
|
|
|
|
AM_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GTHREAD_CFLAGS) \
|
|
$(NETWORK_MANAGER_CFLAGS) \
|
|
$(PPPD_CFLAGS) \
|
|
$(NM_VPN_CFLAGS) \
|
|
-Wall \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\" \
|
|
-DNM_VERSION="\"$(VERSION)\"" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
-DLOCALSTATEDIR=\""$(localstatedir)"\" \
|
|
-DDATADIR=\"$(datadir)\" \
|
|
-fPIC
|
|
|
|
bin_PROGRAMS = nm-ppp-starter
|
|
|
|
pppdplugindir = $(PPPD_PLUGIN_DIR)
|
|
pppdplugin_PROGRAMS = nm-pppd-plugin.so
|
|
|
|
nm_ppp_starter_SOURCES = \
|
|
nm-ppp-starter.c \
|
|
nm-ppp-starter.h \
|
|
nm-utils.c \
|
|
nm-utils.h \
|
|
pppd/fsm.h \
|
|
pppd/ipcp.h \
|
|
pppd/patchlevel.h \
|
|
pppd/pppd.h
|
|
|
|
|
|
nm_ppp_starter_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(GTHREAD_LIBS) \
|
|
$(NETWORK_MANAGER_LIBS)
|
|
|
|
nm_pppd_plugin_so_SOURCES = \
|
|
nm-pppd-plugin.c \
|
|
nm-pppd-plugin.h \
|
|
nm-ppp-starter.h
|
|
|
|
nm_pppd_plugin_so_LDFLAGS = \
|
|
-shared
|
|
|
|
nm_pppd_plugin_so_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(GTHREAD_LIBS)
|
|
|
|
CLEANFILES = *~
|