mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-09 04:10:18 +01:00
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3973 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
46 lines
1 KiB
Makefile
46 lines
1 KiB
Makefile
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-keyfile.la
|
|
|
|
libnm_settings_plugin_keyfile_la_SOURCES = \
|
|
nm-keyfile-connection.c \
|
|
nm-keyfile-connection.h \
|
|
plugin.c \
|
|
plugin.h \
|
|
reader.c \
|
|
reader.h \
|
|
writer.c \
|
|
writer.h
|
|
|
|
keyfile_dir=$(sysconfdir)/NetworkManager/system-connections
|
|
|
|
libnm_settings_plugin_keyfile_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-I${top_srcdir}/system-settings/src \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I${top_srcdir}/libnm-glib \
|
|
-DKEYFILE_DIR=\""$(keyfile_dir)"\"
|
|
|
|
libnm_settings_plugin_keyfile_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_keyfile_la_LIBADD = \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(DBUS_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm_glib.la
|
|
|
|
if NO_GIO
|
|
libnm_settings_plugin_keyfile_la_LIBADD += \
|
|
$(top_builddir)/gfilemonitor/libgfilemonitor.la
|
|
else
|
|
libnm_settings_plugin_keyfile_la_LIBADD += \
|
|
$(GIO_LIBS)
|
|
endif
|
|
|
|
install-data-hook:
|
|
mkdir -p $(DESTDIR)$(keyfile_dir)
|
|
|
|
|