mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-26 06:10:31 +01:00
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
SUBDIRS=. tests
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/src/settings \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-glib \
|
|
-I$(top_srcdir)/libnm-util
|
|
|
|
noinst_LTLIBRARIES = libifupdown-io.la
|
|
|
|
libifupdown_io_la_SOURCES = \
|
|
interface_parser.c \
|
|
interface_parser.h \
|
|
parser.c \
|
|
parser.h
|
|
|
|
libifupdown_io_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
libifupdown_io_la_LIBADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS)
|
|
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-ifupdown.la
|
|
|
|
libnm_settings_plugin_ifupdown_la_SOURCES = \
|
|
nm-ifupdown-connection.c \
|
|
nm-ifupdown-connection.h \
|
|
plugin.c \
|
|
plugin.h
|
|
|
|
libnm_settings_plugin_ifupdown_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
$(GUDEV_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
libnm_settings_plugin_ifupdown_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_ifupdown_la_LIBADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
libifupdown-io.la \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(GUDEV_LIBS)
|
|
|