mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-15 08:58:06 +02:00
Bothered me for a long time; now that we've bumped the soname, we can rename the library too.
62 lines
1.3 KiB
Makefile
62 lines
1.3 KiB
Makefile
SUBDIRS=. tests
|
|
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-ifcfg-rh.la
|
|
|
|
noinst_LTLIBRARIES = libifcfg-rh-io.la
|
|
|
|
libifcfg_rh_io_la_SOURCES = \
|
|
shvar.c \
|
|
shvar.h \
|
|
reader.c \
|
|
reader.h \
|
|
writer.c \
|
|
writer.h \
|
|
sha1.c \
|
|
sha1.h \
|
|
errors.c \
|
|
common.h \
|
|
utils.c \
|
|
utils.h \
|
|
crypto.c \
|
|
crypto.h
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/src/system-settings \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-glib \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_builddir)/marshallers
|
|
|
|
libifcfg_rh_io_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
$(NSS_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DSBINDIR=\"$(sbindir)\"
|
|
|
|
libifcfg_rh_io_la_LIBADD = $(GLIB_LIBS) $(NSS_LIBS)
|
|
|
|
libnm_settings_plugin_ifcfg_rh_la_SOURCES = \
|
|
plugin.c \
|
|
plugin.h \
|
|
nm-ifcfg-connection.c \
|
|
nm-ifcfg-connection.h
|
|
|
|
libnm_settings_plugin_ifcfg_rh_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
libnm_settings_plugin_ifcfg_rh_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_ifcfg_rh_la_LIBADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
|
$(top_builddir)/marshallers/libmarshallers.la \
|
|
libifcfg-rh-io.la \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(GIO_LIBS)
|
|
|