mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-07 13:35:21 +00:00
e5df4edefa
Various binaries are statically linking to libvirt_util.la and other intermediate libraries we build. These intermediate libs all get built into the main libvirt.so shared library eventually, so we can dynamically link to that instead and reduce the on disk footprint. In libvirt-daemon RPM: virtlockd: 1.6 MB -> 153 KB virtlogd: 1.6 MB -> 157 KB libvirt_iohelper: 937 KB -> 23 KB In libvirt-daemon-driver-network RPM: libvirt_leaseshelper: 940 KB -> 26 KB In libvirt-daemon-driver-storage-core RPM: libvirt_parthelper: 926 KB -> 21 KB IOW, about 5.6 MB total space saving in a build done on Fedora 30 x86_64 architecture. Reviewed-by: Ján Tomko <jtomko@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
123 lines
3.2 KiB
Makefile
123 lines
3.2 KiB
Makefile
# vim: filetype=automake
|
|
|
|
SECURITY_DRIVER_APPARMOR_HELPER_SOURCES = \
|
|
$(DATATYPES_SOURCES) \
|
|
security/virt-aa-helper.c \
|
|
$(NULL)
|
|
|
|
SECURITY_DRIVER_SOURCES = \
|
|
security/security_driver.h \
|
|
security/security_driver.c \
|
|
security/security_nop.h \
|
|
security/security_nop.c \
|
|
security/security_stack.h \
|
|
security/security_stack.c \
|
|
security/security_dac.h \
|
|
security/security_dac.c \
|
|
security/security_manager.h \
|
|
security/security_manager.c \
|
|
security/security_util.h \
|
|
security/security_util.c \
|
|
$(NULL)
|
|
|
|
SECURITY_DRIVER_SELINUX_SOURCES = \
|
|
security/security_selinux.h \
|
|
security/security_selinux.c \
|
|
$(NULL)
|
|
|
|
SECURITY_DRIVER_APPARMOR_SOURCES = \
|
|
security/security_apparmor.h \
|
|
security/security_apparmor.c \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST += \
|
|
$(SECURITY_DRIVER_SELINUX_SOURCES) \
|
|
$(SECURITY_DRIVER_APPARMOR_SOURCES) \
|
|
$(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES) \
|
|
security/apparmor/TEMPLATE.qemu \
|
|
security/apparmor/TEMPLATE.lxc \
|
|
security/apparmor/libvirt-qemu \
|
|
security/apparmor/libvirt-lxc \
|
|
security/apparmor/usr.lib.libvirt.virt-aa-helper \
|
|
security/apparmor/usr.sbin.libvirtd \
|
|
$(NULL)
|
|
|
|
libvirt_security_manager_la_SOURCES = $(SECURITY_DRIVER_SOURCES)
|
|
noinst_LTLIBRARIES += libvirt_security_manager.la
|
|
libvirt_la_BUILT_LIBADD += libvirt_security_manager.la
|
|
libvirt_security_manager_la_CFLAGS = \
|
|
-I$(srcdir)/conf \
|
|
$(AM_CFLAGS) \
|
|
$(NULL)
|
|
libvirt_security_manager_la_LDFLAGS = $(AM_LDFLAGS)
|
|
libvirt_security_manager_la_LIBADD =
|
|
|
|
if WITH_SECDRIVER_SELINUX
|
|
libvirt_security_manager_la_SOURCES += $(SECURITY_DRIVER_SELINUX_SOURCES)
|
|
libvirt_security_manager_la_CFLAGS += $(SELINUX_CFLAGS)
|
|
endif WITH_SECDRIVER_SELINUX
|
|
|
|
if WITH_SECDRIVER_APPARMOR
|
|
libvirt_security_manager_la_SOURCES += $(SECURITY_DRIVER_APPARMOR_SOURCES)
|
|
libvirt_security_manager_la_CFLAGS += $(APPARMOR_CFLAGS)
|
|
|
|
if WITH_LIBVIRTD
|
|
libexec_PROGRAMS += virt-aa-helper
|
|
|
|
virt_aa_helper_SOURCES = $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)
|
|
|
|
virt_aa_helper_LDFLAGS = \
|
|
$(AM_LDFLAGS) \
|
|
$(PIE_LDFLAGS) \
|
|
$(NULL)
|
|
virt_aa_helper_LDADD = \
|
|
libvirt.la \
|
|
libvirt_driver_storage_impl.la \
|
|
../gnulib/lib/libgnu.la \
|
|
$(NULL)
|
|
if WITH_DTRACE_PROBES
|
|
virt_aa_helper_LDADD += libvirt_probes.lo
|
|
endif WITH_DTRACE_PROBES
|
|
virt_aa_helper_CFLAGS = \
|
|
-I$(srcdir)/conf \
|
|
-I$(srcdir)/security \
|
|
$(AM_CFLAGS) \
|
|
$(PIE_CFLAGS) \
|
|
$(NULL)
|
|
endif WITH_LIBVIRTD
|
|
endif WITH_SECDRIVER_APPARMOR
|
|
|
|
if WITH_APPARMOR_PROFILES
|
|
apparmordir = $(sysconfdir)/apparmor.d/
|
|
apparmor_DATA = \
|
|
security/apparmor/usr.lib.libvirt.virt-aa-helper \
|
|
security/apparmor/usr.sbin.libvirtd \
|
|
$(NULL)
|
|
|
|
abstractionsdir = $(apparmordir)/abstractions
|
|
abstractions_DATA = \
|
|
security/apparmor/libvirt-qemu \
|
|
security/apparmor/libvirt-lxc \
|
|
$(NULL)
|
|
|
|
templatesdir = $(apparmordir)/libvirt
|
|
templates_DATA = \
|
|
security/apparmor/TEMPLATE.qemu \
|
|
security/apparmor/TEMPLATE.lxc \
|
|
$(NULL)
|
|
|
|
APPARMOR_LOCAL_DIR = "$(DESTDIR)$(apparmordir)/local"
|
|
install-apparmor-local:
|
|
$(MKDIR_P) "$(APPARMOR_LOCAL_DIR)"
|
|
echo "# Site-specific additions and overrides for \
|
|
'usr.lib.libvirt.virt-aa-helper'" \
|
|
>"$(APPARMOR_LOCAL_DIR)/usr.lib.libvirt.virt-aa-helper"
|
|
|
|
uninstall-apparmor-local:
|
|
rm -f "$(APPARMOR_LOCAL_DIR)/usr.lib.libvirt.virt-aa-helper"
|
|
rmdir "$(APPARMOR_LOCAL_DIR)" || :
|
|
|
|
INSTALL_DATA_LOCAL += install-apparmor-local
|
|
UNINSTALL_LOCAL += uninstall-apparmor-local
|
|
endif WITH_APPARMOR_PROFILES
|