mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-18 19:48:08 +02:00
Patch from Helmut Schaa <hschaa@suse.de> * vpn-daemons/pptp/configure.in vpn-daemons/pptp/Makefile.am vpn-daemons/openvpn/configure.in vpn-daemons/openvpn/Makefile.am vpn-daemons/vpnc/configure.in vpn-daemons/vpnc/Makefile.am - Add --without-gnome switch which disables building gnome bits git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2316 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
34 lines
930 B
Makefile
34 lines
930 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
if WITH_GNOME
|
|
SUBDIRS = src auth-dialog auth-dialog-general properties po
|
|
else
|
|
SUBDIRS = src
|
|
endif
|
|
|
|
dbusservicedir = $(sysconfdir)/dbus-1/system.d
|
|
dbusservice_DATA = nm-ppp-starter.conf
|
|
|
|
nmvpnservicedir = $(sysconfdir)/NetworkManager/VPN
|
|
nmvpnservice_DATA = nm-ppp-starter.name
|
|
|
|
if WITH_GNOME
|
|
desktopdir = $(datadir)/applications
|
|
desktop_in_files = nm-ppp.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
|
|
|
|
EXTRA_DIST = $(nmvpnservice_DATA) \
|
|
$(dbusservice_DATA) \
|
|
$(desktop_in_files) \
|
|
$(icon_DATA) \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in
|
|
|
|
CLEANFILES = $(desktop_DATA) *~
|
|
DISTCLEANFILES = intltool-extract intltool-merge intltool-update
|