mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-15 22:58:18 +02:00
Patch from Michael Biebl <biebl@debian.org> * Move service to $LIBEXECDIR, remove unneeded compilation flags, move properties plugin to $LIBDIR/NetworkManager git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3861 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
32 lines
850 B
Makefile
32 lines
850 B
Makefile
AM_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(NETWORK_MANAGER_CFLAGS) \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\" \
|
|
-DVERSION="\"$(VERSION)\"" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
-DLOCALSTATEDIR=\""$(localstatedir)"\" \
|
|
-DDATADIR=\"$(datadir)\"
|
|
|
|
libexec_PROGRAMS = nm-openvpn-service nm-openvpn-service-openvpn-helper
|
|
|
|
nm_openvpn_service_SOURCES = \
|
|
nm-openvpn-service.c \
|
|
nm-openvpn-service.h
|
|
|
|
|
|
nm_openvpn_service_LDADD = $(NETWORK_MANAGER_LIBS) -lnm_glib_vpn
|
|
|
|
|
|
nm_openvpn_service_openvpn_helper_SOURCES = \
|
|
nm-openvpn-service-openvpn-helper.c
|
|
|
|
nm_openvpn_service_openvpn_helper_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(NETWORK_MANAGER_LIBS)
|
|
|
|
CLEANFILES = *~
|