mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-27 17:30:09 +01:00
Ignore temporary files created by vim editor and temporary files created internally by g_file_set_contents() (mkstemp()) when writing connections.
58 lines
1.2 KiB
Makefile
58 lines
1.2 KiB
Makefile
SUBDIRS=. tests
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/src/system-settings \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_srcdir)/libnm-glib
|
|
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-keyfile.la
|
|
|
|
noinst_LTLIBRARIES = libkeyfile-io.la
|
|
|
|
libkeyfile_io_la_SOURCES = \
|
|
reader.c \
|
|
reader.h \
|
|
writer.c \
|
|
writer.h \
|
|
errors.c \
|
|
utils.c \
|
|
utils.h \
|
|
common.h
|
|
|
|
libkeyfile_io_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DG_DISABLE_DEPRECATED
|
|
|
|
libkeyfile_io_la_LIBADD = $(GLIB_LIBS)
|
|
|
|
libnm_settings_plugin_keyfile_la_SOURCES = \
|
|
nm-keyfile-connection.c \
|
|
nm-keyfile-connection.h \
|
|
plugin.c \
|
|
plugin.h
|
|
|
|
libnm_settings_plugin_keyfile_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DG_DISABLE_DEPRECATED
|
|
|
|
libnm_settings_plugin_keyfile_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_keyfile_la_LIBADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
|
libkeyfile-io.la \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(DBUS_LIBS) \
|
|
$(GIO_LIBS)
|
|
|
|
keyfiledir=$(sysconfdir)/NetworkManager/system-connections
|
|
|
|
install-data-hook:
|
|
$(mkinstalldirs) -m 0755 $(DESTDIR)$(keyfiledir)
|
|
|