mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 02:41:14 +00:00
2621d48f00
This deletes all trace of gnulib from libvirt. We still have the keycodemapdb submodule to deal with. The simple solution taken was to update it when running autogen.sh. Previously gnulib could auto-trigger refresh when running 'make' too. We could figure out a solution for this, but with the pending meson rewrite it isn't worth worrying about, given how infrequently keycodemapdb changes. Reviewed-by: Pavel Hrdina <phrdina@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
147 lines
4.0 KiB
Makefile
147 lines
4.0 KiB
Makefile
# vim: filetype=automake
|
|
|
|
NODE_DEVICE_DRIVER_SOURCES = \
|
|
node_device/node_device_driver.c \
|
|
node_device/node_device_driver.h \
|
|
$(NULL)
|
|
|
|
NODE_DEVICE_DRIVER_HAL_SOURCES = \
|
|
node_device/node_device_hal.c \
|
|
node_device/node_device_hal.h \
|
|
$(NULL)
|
|
|
|
NODE_DEVICE_DRIVER_UDEV_SOURCES = \
|
|
node_device/node_device_udev.c \
|
|
node_device/node_device_udev.h \
|
|
$(NULL)
|
|
|
|
DRIVER_SOURCE_FILES += \
|
|
$(addprefix $(srcdir)/,$(NODE_DEVICE_DRIVER_SOURCES)) \
|
|
$(addprefix $(srcdir)/,$(NODE_DEVICE_DRIVER_HAL_SOURCES)) \
|
|
$(addprefix $(srcdir)/,$(NODE_DEVICE_DRIVER_UDEV_SOURCES)) \
|
|
$(NULL)
|
|
|
|
STATEFUL_DRIVER_SOURCE_FILES += \
|
|
$(addprefix $(srcdir)/,$(NODE_DEVICE_DRIVER_SOURCES)) \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST += \
|
|
$(NODE_DEVICE_DRIVER_SOURCES) \
|
|
$(NODE_DEVICE_DRIVER_HAL_SOURCES) \
|
|
$(NODE_DEVICE_DRIVER_UDEV_SOURCES) \
|
|
$(NULL)
|
|
|
|
|
|
if WITH_NODE_DEVICES
|
|
# Needed to keep automake quiet about conditionals
|
|
mod_LTLIBRARIES += libvirt_driver_nodedev.la
|
|
libvirt_driver_nodedev_la_SOURCES = $(NODE_DEVICE_DRIVER_SOURCES)
|
|
|
|
libvirt_driver_nodedev_la_CFLAGS = \
|
|
-I$(srcdir)/access \
|
|
-I$(builddir)/access \
|
|
-I$(srcdir)/conf \
|
|
$(AM_CFLAGS) \
|
|
$(LIBNL_CFLAGS) \
|
|
$(NULL)
|
|
libvirt_driver_nodedev_la_LDFLAGS = $(AM_LDFLAGS_MOD_NOUNDEF)
|
|
libvirt_driver_nodedev_la_LIBADD = \
|
|
libvirt.la \
|
|
$(GLIB_LIBS) \
|
|
$(NULL)
|
|
|
|
if WITH_HAL
|
|
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_HAL_SOURCES)
|
|
libvirt_driver_nodedev_la_CFLAGS += $(HAL_CFLAGS)
|
|
libvirt_driver_nodedev_la_LIBADD += $(HAL_LIBS)
|
|
endif WITH_HAL
|
|
if WITH_UDEV
|
|
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_UDEV_SOURCES)
|
|
libvirt_driver_nodedev_la_CFLAGS += \
|
|
$(UDEV_CFLAGS) \
|
|
$(PCIACCESS_CFLAGS) \
|
|
$(NULL)
|
|
libvirt_driver_nodedev_la_LIBADD += \
|
|
$(UDEV_LIBS) \
|
|
$(PCIACCESS_LIBS) \
|
|
$(NULL)
|
|
endif WITH_UDEV
|
|
|
|
sbin_PROGRAMS += virtnodedevd
|
|
|
|
nodist_conf_DATA += node_device/virtnodedevd.conf
|
|
augeas_DATA += node_device/virtnodedevd.aug
|
|
augeastest_DATA += node_device/test_virtnodedevd.aug
|
|
CLEANFILES += node_device/virtnodedevd.aug
|
|
|
|
virtnodedevd_SOURCES = $(REMOTE_DAEMON_SOURCES)
|
|
nodist_virtnodedevd_SOURCES = $(REMOTE_DAEMON_GENERATED)
|
|
virtnodedevd_CFLAGS = \
|
|
$(REMOTE_DAEMON_CFLAGS) \
|
|
-DDAEMON_NAME="\"virtnodedevd\"" \
|
|
-DMODULE_NAME="\"nodedev\"" \
|
|
$(NULL)
|
|
virtnodedevd_LDFLAGS = $(REMOTE_DAEMON_LD_FLAGS)
|
|
virtnodedevd_LDADD = $(REMOTE_DAEMON_LD_ADD)
|
|
|
|
SYSTEMD_UNIT_FILES += \
|
|
virtnodedevd.service \
|
|
virtnodedevd.socket \
|
|
virtnodedevd-ro.socket \
|
|
virtnodedevd-admin.socket \
|
|
$(NULL)
|
|
SYSTEMD_UNIT_FILES_IN += \
|
|
node_device/virtnodedevd.service.in \
|
|
$(NULL)
|
|
|
|
OPENRC_INIT_FILES += \
|
|
virtnodedevd.init \
|
|
$(NULL)
|
|
OPENRC_INIT_FILES_IN += \
|
|
node_device/virtnodedevd.init.in \
|
|
$(NULL)
|
|
|
|
VIRTNODEDEVD_UNIT_VARS = \
|
|
$(VIRTD_UNIT_VARS) \
|
|
-e 's|[@]name[@]|Libvirt nodedev|g' \
|
|
-e 's|[@]service[@]|virtnodedevd|g' \
|
|
-e 's|[@]sockprefix[@]|virtnodedevd|g' \
|
|
$(NULL)
|
|
|
|
virtnodedevd.init: node_device/virtnodedevd.init.in \
|
|
$(top_builddir)/config.status
|
|
$(AM_V_GEN)$(SED) $(LIBVIRTD_INIT_VARS) $< > $@-t && mv $@-t $@
|
|
|
|
virtnodedevd.service: node_device/virtnodedevd.service.in \
|
|
$(top_builddir)/config.status
|
|
$(AM_V_GEN)$(SED) $(VIRTNODEDEVD_UNIT_VARS) $< > $@-t && mv $@-t $@
|
|
|
|
virtnodedev%.socket: remote/libvirt%.socket.in \
|
|
$(top_builddir)/config.status
|
|
$(AM_V_GEN)$(SED) $(VIRTNODEDEVD_UNIT_VARS) $< > $@-t && mv $@-t $@
|
|
|
|
node_device/virtnodedevd.conf: remote/libvirtd.conf.in
|
|
$(AM_V_GEN)$(SED) \
|
|
-e '/[@]CUT_ENABLE_IP[@]/,/[@]END[@]/d' \
|
|
-e 's/[@]DAEMON_NAME[@]/virtnodedevd/' \
|
|
$< > $@
|
|
|
|
node_device/virtnodedevd.aug: remote/libvirtd.aug.in
|
|
$(AM_V_GEN)$(SED) \
|
|
-e '/[@]CUT_ENABLE_IP[@]/,/[@]END[@]/d' \
|
|
-e 's/[@]DAEMON_NAME[@]/virtnodedevd/' \
|
|
-e 's/[@]DAEMON_NAME_UC[@]/Virtnodedevd/' \
|
|
$< > $@
|
|
|
|
node_device/test_virtnodedevd.aug: remote/test_libvirtd.aug.in \
|
|
node_device/virtnodedevd.conf $(AUG_GENTEST_SCRIPT)
|
|
$(AM_V_GEN)$(AUG_GENTEST) node_device/virtnodedevd.conf \
|
|
$(srcdir)/remote/test_libvirtd.aug.in | \
|
|
$(SED) \
|
|
-e '/[@]CUT_ENABLE_IP[@]/,/[@]END[@]/d' \
|
|
-e 's/[@]DAEMON_NAME[@]/virtnodedevd/' \
|
|
-e 's/[@]DAEMON_NAME_UC[@]/Virtnodedevd/' \
|
|
> $@ || rm -f $@
|
|
|
|
endif WITH_NODE_DEVICES
|