2009-01-12 14:21:44 -05:00
|
|
|
SUBDIRS=io tests
|
|
|
|
|
|
|
|
|
|
INCLUDES = \
|
2009-06-11 00:39:12 -04:00
|
|
|
-I$(top_srcdir)/src/system-settings \
|
2009-01-12 14:21:44 -05:00
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
|
-I$(top_srcdir)/libnm-util \
|
|
|
|
|
-I$(top_srcdir)/libnm-glib \
|
|
|
|
|
-I$(top_srcdir)/system-settings/plugins/keyfile/io
|
2008-04-22 14:48:02 +00:00
|
|
|
|
|
|
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-keyfile.la
|
|
|
|
|
|
|
|
|
|
libnm_settings_plugin_keyfile_la_SOURCES = \
|
2008-05-07 09:48:12 +00:00
|
|
|
nm-keyfile-connection.c \
|
|
|
|
|
nm-keyfile-connection.h \
|
2008-04-22 14:48:02 +00:00
|
|
|
plugin.c \
|
2009-01-12 14:21:44 -05:00
|
|
|
plugin.h
|
2008-04-22 14:48:02 +00:00
|
|
|
|
2008-08-17 22:54:49 +00:00
|
|
|
keyfiledir=$(sysconfdir)/NetworkManager/system-connections
|
2008-08-15 20:25:08 +00:00
|
|
|
|
2008-04-22 14:48:02 +00:00
|
|
|
libnm_settings_plugin_keyfile_la_CPPFLAGS = \
|
|
|
|
|
$(GLIB_CFLAGS) \
|
|
|
|
|
$(GMODULE_CFLAGS) \
|
|
|
|
|
$(DBUS_CFLAGS) \
|
2008-09-24 15:03:33 +00:00
|
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
2008-04-22 14:48:02 +00:00
|
|
|
-DG_DISABLE_DEPRECATED \
|
2008-08-17 22:54:49 +00:00
|
|
|
-DKEYFILE_DIR=\""$(keyfiledir)"\"
|
2008-04-22 14:48:02 +00:00
|
|
|
|
|
|
|
|
libnm_settings_plugin_keyfile_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
libnm_settings_plugin_keyfile_la_LIBADD = \
|
2008-05-07 09:48:12 +00:00
|
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
2009-08-26 13:07:35 -05:00
|
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
2009-08-20 12:31:17 -05:00
|
|
|
$(top_builddir)/system-settings/plugins/keyfile/io/libkeyfile-io.la \
|
|
|
|
|
$(GLIB_LIBS) \
|
|
|
|
|
$(GMODULE_LIBS) \
|
2009-08-20 13:00:37 -05:00
|
|
|
$(DBUS_LIBS) \
|
2008-05-11 20:12:18 +00:00
|
|
|
$(GIO_LIBS)
|
2008-08-15 20:25:08 +00:00
|
|
|
|
|
|
|
|
install-data-hook:
|
2008-08-17 22:54:49 +00:00
|
|
|
$(mkinstalldirs) -m 0755 $(DESTDIR)$(keyfiledir)
|
2008-08-15 20:25:08 +00:00
|
|
|
|