mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
de9758ae9b
When adding new config file parameters, the corresponding additions to the augeas lens' are constantly forgotten. Also there are augeas test cases, these don't catch the error, since they too are never updated. To address this, the augeas test cases need to be auto-generated from the example config files. * build-aux/augeas-gentest.pl: Helper to generate an augeas test file, substituting in elements from the example config files * src/Makefile.am, daemon/Makefile.am: Switch to auto-generated augeas test cases * daemon/test_libvirtd.aug, daemon/test_libvirtd.aug.in, src/locking/test_libvirt_sanlock.aug, src/locking/test_libvirt_sanlock.aug.in, src/lxc/test_libvirtd_lxc.aug, src/lxc/test_libvirtd_lxc.aug.in, src/qemu/test_libvirtd_qemu.aug, src/qemu/test_libvirtd_qemu.aug.in: Remove example config file data, replacing with a ::CONFIG:: placeholder Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
397 lines
11 KiB
Makefile
397 lines
11 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
## Copyright (C) 2005-2012 Red Hat, Inc.
|
|
## See COPYING.LIB for the License of this software
|
|
|
|
INCLUDES = \
|
|
-I$(top_builddir)/gnulib/lib -I$(top_srcdir)/gnulib/lib \
|
|
-I$(top_builddir)/include -I$(top_srcdir)/include \
|
|
-I$(top_builddir)/src -I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/util \
|
|
-I$(top_srcdir)/src/conf \
|
|
-I$(top_srcdir)/src/rpc \
|
|
-I$(top_srcdir)/src/remote \
|
|
$(GETTEXT_CPPFLAGS)
|
|
|
|
CLEANFILES =
|
|
|
|
DAEMON_GENERATED = \
|
|
$(srcdir)/remote_dispatch.h \
|
|
$(srcdir)/qemu_dispatch.h
|
|
|
|
DAEMON_SOURCES = \
|
|
libvirtd.c libvirtd.h \
|
|
libvirtd-config.c libvirtd-config.h \
|
|
remote.c remote.h \
|
|
stream.c stream.h \
|
|
../src/remote/remote_protocol.c \
|
|
../src/remote/qemu_protocol.c \
|
|
$(DAEMON_GENERATED)
|
|
|
|
DISTCLEANFILES =
|
|
EXTRA_DIST = \
|
|
remote_dispatch.h \
|
|
qemu_dispatch.h \
|
|
libvirtd.conf \
|
|
libvirtd.init.in \
|
|
libvirtd.upstart \
|
|
libvirtd.policy-0 \
|
|
libvirtd.policy-1 \
|
|
libvirtd.sasl \
|
|
libvirtd.sysconf \
|
|
libvirtd.sysctl \
|
|
libvirtd.aug \
|
|
libvirtd.logrotate.in \
|
|
libvirtd.qemu.logrotate.in \
|
|
libvirtd.lxc.logrotate.in \
|
|
libvirtd.uml.logrotate.in \
|
|
test_libvirtd.aug.in \
|
|
THREADS.txt \
|
|
libvirtd.pod.in \
|
|
libvirtd.8.in \
|
|
$(DAEMON_SOURCES)
|
|
|
|
BUILT_SOURCES =
|
|
|
|
REMOTE_PROTOCOL = $(top_srcdir)/src/remote/remote_protocol.x
|
|
QEMU_PROTOCOL = $(top_srcdir)/src/remote/qemu_protocol.x
|
|
|
|
$(srcdir)/remote_dispatch.h: $(srcdir)/../src/rpc/gendispatch.pl \
|
|
$(REMOTE_PROTOCOL)
|
|
$(AM_V_GEN)perl -w $(srcdir)/../src/rpc/gendispatch.pl -b remote \
|
|
$(REMOTE_PROTOCOL) > $@
|
|
|
|
$(srcdir)/qemu_dispatch.h: $(srcdir)/../src/rpc/gendispatch.pl \
|
|
$(QEMU_PROTOCOL)
|
|
$(AM_V_GEN)perl -w $(srcdir)/../src/rpc/gendispatch.pl -b qemu \
|
|
$(QEMU_PROTOCOL) > $@
|
|
|
|
if WITH_LIBVIRTD
|
|
|
|
man8_MANS = libvirtd.8
|
|
|
|
sbin_PROGRAMS = libvirtd
|
|
|
|
confdir = $(sysconfdir)/libvirt/
|
|
conf_DATA = libvirtd.conf
|
|
|
|
augeasdir = $(datadir)/augeas/lenses
|
|
augeas_DATA = libvirtd.aug
|
|
|
|
augeastestsdir = $(datadir)/augeas/lenses/tests
|
|
augeastests_DATA = test_libvirtd.aug
|
|
|
|
CLEANFILES += test_libvirtd.aug
|
|
|
|
libvirtd.8: $(srcdir)/libvirtd.8.in
|
|
sed \
|
|
-e 's![@]sysconfdir[@]!$(sysconfdir)!g' \
|
|
-e 's![@]localstatedir[@]!$(localstatedir)!g' \
|
|
-e 's![@]remote_pid_file[@]!$(REMOTE_PID_FILE)!g' \
|
|
< $< > $@-t
|
|
mv $@-t $@
|
|
|
|
libvirtd_SOURCES = $(DAEMON_SOURCES)
|
|
|
|
#-D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_POSIX_C_SOURCE=199506L
|
|
libvirtd_CFLAGS = \
|
|
$(LIBXML_CFLAGS) $(GNUTLS_CFLAGS) $(SASL_CFLAGS) \
|
|
$(XDR_CFLAGS) $(POLKIT_CFLAGS) $(DBUS_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(COVERAGE_CFLAGS) \
|
|
-DQEMUD_PID_FILE="\"$(QEMUD_PID_FILE)\"" \
|
|
-DREMOTE_PID_FILE="\"$(REMOTE_PID_FILE)\""
|
|
|
|
libvirtd_LDFLAGS = \
|
|
$(WARN_CFLAGS) \
|
|
$(COVERAGE_LDFLAGS)
|
|
|
|
libvirtd_LDADD = \
|
|
$(LIBXML_LIBS) \
|
|
$(GNUTLS_LIBS) \
|
|
$(SASL_LIBS) \
|
|
$(DBUS_LIBS) \
|
|
$(POLKIT_LIBS)
|
|
|
|
if WITH_DTRACE_PROBES
|
|
libvirtd_LDADD += ../src/libvirt_probes.o
|
|
endif
|
|
|
|
libvirtd_LDADD += \
|
|
../src/libvirt-qemu.la
|
|
|
|
if ! WITH_DRIVER_MODULES
|
|
if WITH_QEMU
|
|
libvirtd_LDADD += ../src/libvirt_driver_qemu.la
|
|
if WITH_DTRACE_PROBES
|
|
libvirtd_LDADD += ../src/libvirt_qemu_probes.o
|
|
endif
|
|
endif
|
|
|
|
if WITH_LXC
|
|
libvirtd_LDADD += ../src/libvirt_driver_lxc.la
|
|
endif
|
|
|
|
if WITH_LIBXL
|
|
libvirtd_LDADD += ../src/libvirt_driver_libxl.la
|
|
endif
|
|
|
|
if WITH_UML
|
|
libvirtd_LDADD += ../src/libvirt_driver_uml.la
|
|
endif
|
|
|
|
if WITH_STORAGE_DIR
|
|
libvirtd_LDADD += ../src/libvirt_driver_storage.la
|
|
endif
|
|
|
|
if WITH_NETWORK
|
|
libvirtd_LDADD += ../src/libvirt_driver_network.la
|
|
endif
|
|
|
|
if WITH_NETCF
|
|
libvirtd_LDADD += ../src/libvirt_driver_interface.la
|
|
endif
|
|
|
|
if WITH_NODE_DEVICES
|
|
libvirtd_LDADD += ../src/libvirt_driver_nodedev.la
|
|
endif
|
|
|
|
if WITH_SECRETS
|
|
libvirtd_LDADD += ../src/libvirt_driver_secret.la
|
|
endif
|
|
|
|
if WITH_NWFILTER
|
|
libvirtd_LDADD += ../src/libvirt_driver_nwfilter.la
|
|
endif
|
|
endif
|
|
|
|
libvirtd_LDADD += ../src/libvirt.la
|
|
|
|
if HAVE_POLKIT
|
|
if HAVE_POLKIT0
|
|
policydir = $(datadir)/PolicyKit/policy
|
|
policyfile = libvirtd.policy-0
|
|
else
|
|
policydir = $(datadir)/polkit-1/actions
|
|
policyfile = libvirtd.policy-1
|
|
endif
|
|
endif
|
|
|
|
install-data-local: install-init-redhat install-init-systemd install-init-upstart \
|
|
install-data-sasl install-data-polkit \
|
|
install-logrotate install-sysctl
|
|
$(MKDIR_P) $(DESTDIR)$(localstatedir)/log/libvirt \
|
|
$(DESTDIR)$(localstatedir)/run/libvirt \
|
|
$(DESTDIR)$(localstatedir)/lib/libvirt
|
|
|
|
uninstall-local:: uninstall-init-redhat uninstall-init-systemd uninstall-init-upstart \
|
|
uninstall-data-sasl uninstall-data-polkit \
|
|
uninstall-logrotate uninstall-sysctl
|
|
rmdir $(DESTDIR)$(localstatedir)/log/libvirt || :
|
|
rmdir $(DESTDIR)$(localstatedir)/run/libvirt || :
|
|
rmdir $(DESTDIR)$(localstatedir)/lib/libvirt || :
|
|
|
|
if HAVE_POLKIT
|
|
install-data-polkit::
|
|
$(MKDIR_P) $(DESTDIR)$(policydir)
|
|
$(INSTALL_DATA) $(srcdir)/$(policyfile) $(DESTDIR)$(policydir)/org.libvirt.unix.policy
|
|
uninstall-data-polkit::
|
|
rm -f $(DESTDIR)$(policydir)/org.libvirt.unix.policy
|
|
rmdir $(DESTDIR)$(policydir) || :
|
|
else
|
|
install-data-polkit::
|
|
uninstall-data-polkit::
|
|
endif
|
|
|
|
remote.c: $(DAEMON_GENERATED)
|
|
remote.h: $(DAEMON_GENERATED)
|
|
|
|
LOGROTATE_CONFS = libvirtd.qemu.logrotate libvirtd.lxc.logrotate \
|
|
libvirtd.uml.logrotate libvirtd.logrotate
|
|
|
|
BUILT_SOURCES += $(LOGROTATE_CONFS)
|
|
|
|
libvirtd.logrotate: libvirtd.logrotate.in
|
|
sed \
|
|
-e 's![@]localstatedir[@]!$(localstatedir)!g' \
|
|
< $< > $@-t
|
|
mv $@-t $@
|
|
|
|
libvirtd.qemu.logrotate: libvirtd.qemu.logrotate.in
|
|
sed \
|
|
-e 's![@]localstatedir[@]!$(localstatedir)!g' \
|
|
< $< > $@-t
|
|
mv $@-t $@
|
|
|
|
libvirtd.lxc.logrotate: libvirtd.lxc.logrotate.in
|
|
$(AM_V_GEN)sed \
|
|
-e 's![@]localstatedir[@]!$(localstatedir)!g' \
|
|
< $< > $@-t && \
|
|
mv $@-t $@
|
|
|
|
libvirtd.uml.logrotate: libvirtd.uml.logrotate.in
|
|
$(AM_V_GEN)sed \
|
|
-e 's![@]localstatedir[@]!$(localstatedir)!g' \
|
|
< $< > $@-t && \
|
|
mv $@-t $@
|
|
|
|
install-logrotate: $(LOGROTATE_CONFS)
|
|
$(MKDIR_P) $(DESTDIR)$(localstatedir)/log/libvirt/qemu/ \
|
|
$(DESTDIR)$(localstatedir)/log/libvirt/lxc/ \
|
|
$(DESTDIR)$(localstatedir)/log/libvirt/uml/ \
|
|
$(DESTDIR)$(sysconfdir)/logrotate.d/
|
|
$(INSTALL_DATA) libvirtd.logrotate $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd
|
|
$(INSTALL_DATA) libvirtd.qemu.logrotate $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.qemu
|
|
$(INSTALL_DATA) libvirtd.lxc.logrotate $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.lxc
|
|
$(INSTALL_DATA) libvirtd.uml.logrotate $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.uml
|
|
|
|
uninstall-logrotate:
|
|
rm -f $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd \
|
|
$(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.qemu \
|
|
$(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.lxc \
|
|
$(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.uml
|
|
rmdir $(DESTDIR)$(localstatedir)/log/libvirt/qemu || :
|
|
rmdir $(DESTDIR)$(localstatedir)/log/libvirt/lxc || :
|
|
rmdir $(DESTDIR)$(localstatedir)/log/libvirt/uml || :
|
|
rmdir $(DESTDIR)$(sysconfdir)/logrotate.d || :
|
|
|
|
install-sysconfig:
|
|
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/sysconfig
|
|
$(INSTALL_DATA) $(srcdir)/libvirtd.sysconf \
|
|
$(DESTDIR)$(sysconfdir)/sysconfig/libvirtd
|
|
uninstall-sysconfig:
|
|
rm -f $(DESTDIR)$(sysconfdir)/sysconfig/libvirtd
|
|
rmdir $(DESTDIR)$(sysconfdir)/sysconfig || :
|
|
|
|
if WITH_SYSCTL
|
|
install-sysctl:
|
|
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/sysctl.d
|
|
$(INSTALL_DATA) $(srcdir)/libvirtd.sysctl \
|
|
$(DESTDIR)$(sysconfdir)/sysctl.d/libvirtd
|
|
|
|
uninstall-sysctl:
|
|
rm -f $(DESTDIR)$(sysconfdir)/sysctl.d/libvirtd
|
|
rmdir $(DESTDIR)$(sysconfdir)/sysctl.d || :
|
|
else
|
|
install-sysctl:
|
|
uninstall-sysctl:
|
|
endif
|
|
|
|
if LIBVIRT_INIT_SCRIPT_RED_HAT
|
|
|
|
BUILT_SOURCES += libvirtd.init
|
|
|
|
install-init-redhat: install-sysconfig libvirtd.init
|
|
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/rc.d/init.d
|
|
$(INSTALL_SCRIPT) libvirtd.init \
|
|
$(DESTDIR)$(sysconfdir)/rc.d/init.d/libvirtd
|
|
|
|
uninstall-init-redhat: uninstall-sysconfig
|
|
rm -f $(DESTDIR)$(sysconfdir)/rc.d/init.d/libvirtd
|
|
rmdir $(DESTDIR)$(sysconfdir)/rc.d/init.d || :
|
|
else
|
|
install-init-redhat:
|
|
uninstall-init-redhat:
|
|
endif # LIBVIRT_INIT_SCRIPT_RED_HAT
|
|
|
|
|
|
if LIBVIRT_INIT_SCRIPT_UPSTART
|
|
|
|
install-init-upstart: install-sysconfig
|
|
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/event.d
|
|
$(INSTALL_SCRIPT) libvirtd.upstart \
|
|
$(DESTDIR)$(sysconfdir)/event.d/libvirtd
|
|
|
|
uninstall-init-upstart: uninstall-sysconfig
|
|
rm -f $(DESTDIR)$(sysconfdir)/event.d/libvirtd
|
|
rmdir $(DESTDIR)$(sysconfdir)/event.d || :
|
|
else
|
|
install-init-upstart:
|
|
uninstall-init-upstart:
|
|
endif # LIBVIRT_INIT_SCRIPT_UPSTART
|
|
|
|
|
|
EXTRA_DIST += libvirtd.service.in
|
|
if LIBVIRT_INIT_SCRIPT_SYSTEMD
|
|
|
|
SYSTEMD_UNIT_DIR = /lib/systemd/system
|
|
BUILT_SOURCES += libvirtd.service
|
|
|
|
install-init-systemd: install-sysconfig libvirtd.service
|
|
$(MKDIR_P) $(DESTDIR)$(SYSTEMD_UNIT_DIR)
|
|
$(INSTALL_SCRIPT) libvirtd.service \
|
|
$(DESTDIR)$(SYSTEMD_UNIT_DIR)/libvirtd.service
|
|
|
|
uninstall-init-systemd: uninstall-sysconfig
|
|
rm -f $(DESTDIR)$(SYSTEMD_UNIT_DIR)/libvirtd.service
|
|
rmdir $(DESTDIR)$(SYSTEMD_UNIT_DIR) || :
|
|
else
|
|
install-init-systemd:
|
|
uninstall-init-systemd:
|
|
endif # LIBVIRT_INIT_SCRIPT_SYSTEMD
|
|
|
|
libvirtd.init: libvirtd.init.in $(top_builddir)/config.status
|
|
$(AM_V_GEN)sed \
|
|
-e s!\@localstatedir\@!$(localstatedir)!g \
|
|
-e s!\@sbindir\@!$(sbindir)!g \
|
|
-e s!\@sysconfdir\@!$(sysconfdir)!g \
|
|
< $< > $@-t && \
|
|
chmod a+x $@-t && \
|
|
mv $@-t $@
|
|
|
|
libvirtd.service: libvirtd.service.in $(top_builddir)/config.status
|
|
$(AM_V_GEN)sed \
|
|
-e s!\@localstatedir\@!$(localstatedir)!g \
|
|
-e s!\@sbindir\@!$(sbindir)!g \
|
|
-e s!\@sysconfdir\@!$(sysconfdir)!g \
|
|
< $< > $@-t && \
|
|
chmod a+x $@-t && \
|
|
mv $@-t $@
|
|
|
|
|
|
check-local: check-augeas
|
|
|
|
test_libvirtd.aug: test_libvirtd.aug.in libvirtd.conf
|
|
$(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/augeas-gentest.pl libvirtd.conf $< $@
|
|
|
|
check-augeas: test_libvirtd.aug
|
|
$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
|
|
'$(AUGPARSE)' -I $(srcdir) $(srcdir)/test_libvirtd.aug; \
|
|
fi
|
|
|
|
|
|
# This must be added last, since functions it provides/replaces
|
|
# are used by nearly every other library.
|
|
libvirtd_LDADD += ../gnulib/lib/libgnu.la $(LIBSOCKET)
|
|
|
|
else # WITH_LIBVIRTD
|
|
install-data-local: install-data-sasl
|
|
uninstall-local:: uninstall-data-sasl
|
|
endif # WITH_LIBVIRTD
|
|
|
|
POD2MAN = pod2man -c "Virtualization Support" \
|
|
-r "$(PACKAGE)-$(VERSION)" -s 8
|
|
|
|
$(srcdir)/libvirtd.8.in: libvirtd.pod.in
|
|
$(AM_V_GEN)$(POD2MAN) $< $@
|
|
|
|
# This is needed for clients too, so can't wrap in
|
|
# the WITH_LIBVIRTD conditional
|
|
if HAVE_SASL
|
|
install-data-sasl:
|
|
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/sasl2/
|
|
$(INSTALL_DATA) $(srcdir)/libvirtd.sasl $(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
|
|
|
|
uninstall-data-sasl:
|
|
rm -f $(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
|
|
rmdir $(DESTDIR)$(sysconfdir)/sasl2/ || :
|
|
else
|
|
install-data-sasl:
|
|
uninstall-data-sasl:
|
|
endif
|
|
|
|
|
|
CLEANFILES += $(BUILT_SOURCES) $(man8_MANS)
|
|
CLEANFILES += *.cov *.gcov .libs/*.gcda .libs/*.gcno *.gcno *.gcda
|
|
MAINTAINERCLEANFILES = $(srcdir)/libvirtd.8.in $(DAEMON_GENERATED)
|