mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-17 19:18:07 +02:00
Patch from Bin Li <libin.charles@gmail.com>, based on patches by Tambet (openvpn) and Dan (vpnc) * common-gnome/* - Copy over common keyring functions * auth-dialog/Makefile.am auth-dialog/main.c - Use common keyring functions * properties/Makefile.am properties/nm-pptp-dialog.glade properties/nm-pptp.c properties/nm-pptp.h - Add a 'password' entry and read/write the password when appropriate git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4175 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
if WITH_GNOME
|
|
SUBDIRS = src common-gnome auth-dialog properties po
|
|
else
|
|
SUBDIRS = src
|
|
endif
|
|
|
|
dbusservicedir = $(sysconfdir)/dbus-1/system.d
|
|
dbusservice_DATA = nm-pptp-service.conf
|
|
|
|
nmvpnservicedir = $(sysconfdir)/NetworkManager/VPN
|
|
nmvpnservice_DATA = nm-pptp-service.name
|
|
|
|
if WITH_GNOME
|
|
desktopdir = $(datadir)/applications
|
|
desktop_in_files = nm-pptp.desktop.in
|
|
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
icondir = $(datadir)/icons/hicolor/48x48/apps
|
|
icon_DATA = gnome-mime-application-x-pptp-settings.png
|
|
endif
|
|
|
|
nm-pptp-service.name: $(srcdir)/nm-pptp-service.name.in
|
|
sed -e 's|[@]LIBEXECDIR[@]|$(libexecdir)|g' $< >$@
|
|
|
|
EXTRA_DIST = nm-pptp-service.name.in \
|
|
$(dbusservice_DATA) \
|
|
$(desktop_in_files) \
|
|
$(icon_DATA) \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in
|
|
|
|
CLEANFILES = $(nmvpnservice_DATA) $(desktop_DATA) *~
|
|
DISTCLEANFILES = intltool-extract intltool-merge intltool-update
|