mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-25 11:38:13 +02:00
Up to now, the "include" directory contained (only) header files that were used project-wide by libs, core, clients, et al. Since the directory now also contains a non-header file, the "include" name is misleading. Instead of adding yet another directory that is project-wide, with non-header-only content, rename the "include" directory to "shared".
75 lines
1.7 KiB
Makefile
75 lines
1.7 KiB
Makefile
SUBDIRS = . tests
|
|
|
|
@GNOME_CODE_COVERAGE_RULES@
|
|
|
|
# See note about gdbus-codegen in introspection/Makefile.am
|
|
|
|
noinst_LTLIBRARIES = libnmdbus-ifcfg-rh.la
|
|
|
|
nodist_libnmdbus_ifcfg_rh_la_SOURCES = \
|
|
nmdbus-ifcfg-rh.c \
|
|
nmdbus-ifcfg-rh.h
|
|
|
|
libnmdbus_ifcfg_rh_la_CPPFLAGS = $(filter-out -DGLIB_VERSION_MAX_ALLOWED%,$(AM_CPPFLAGS))
|
|
|
|
nmdbus-ifcfg-rh.h: nm-ifcfg-rh.xml
|
|
$(AM_V_GEN) gdbus-codegen \
|
|
--generate-c-code $(basename $@) \
|
|
--c-namespace NMDBus \
|
|
--interface-prefix com.redhat \
|
|
$<
|
|
|
|
nmdbus-ifcfg-rh.c: nmdbus-ifcfg-rh.h
|
|
@true
|
|
|
|
BUILT_SOURCES = nmdbus-ifcfg-rh.h nmdbus-ifcfg-rh.c
|
|
|
|
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 \
|
|
common.h \
|
|
utils.c \
|
|
utils.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src/ \
|
|
-I$(top_srcdir)/src/platform \
|
|
-I$(top_srcdir)/src/settings \
|
|
-I$(top_srcdir)/shared \
|
|
-I$(top_builddir)/shared \
|
|
-I$(top_srcdir)/libnm-core \
|
|
-I$(top_builddir)/libnm-core \
|
|
-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_INSIDE_DAEMON \
|
|
-DNM_VERSION_MAX_ALLOWED=NM_VERSION_NEXT_STABLE \
|
|
$(GLIB_CFLAGS) \
|
|
$(NSS_CFLAGS) \
|
|
-DG_LOG_DOMAIN=\""NetworkManager-ifcfg-rh"\" \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DSBINDIR=\"$(sbindir)\"
|
|
|
|
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_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_ifcfg_rh_la_LIBADD = libifcfg-rh-io.la libnmdbus-ifcfg-rh.la
|
|
|
|
dbusservicedir = $(DBUS_SYS_DIR)
|
|
dbusservice_DATA = nm-ifcfg-rh.conf
|
|
|
|
EXTRA_DIST = \
|
|
$(dbusservice_DATA) \
|
|
nm-ifcfg-rh.xml
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|