/
githubmirror
/
swtpm
Обзор
Документация
Войти
/
githubmirror
/
swtpm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/selinux/Makefile.am
93 строки
2 KB
Luca Boccassi
automake: remove more generated files on distclean
23 сен 2025, 15:47
23 сен 2025, 15:47
9be16ff
Код
Авторство
О чём код?
# # src/Makefile.am # # For the license, see the COPYING file in the root directory. # policiesconfdir = $(datadir)/selinux/packages POLICIES = \ swtpm.pp \ swtpm_libvirt.pp \ swtpm_svirt.pp if WITH_CUSE POLICIES += \ swtpmcuse.pp endif POLICIES_BZ2 = \ $(addsuffix .bz2,$(POLICIES)) policiesconf_DATA = \ $(POLICIES) swtpm.pp_FILES = \ $(addprefix $(top_srcdir)/src/selinux/,\ swtpm.if swtpm.te) \ $(top_builddir)/src/selinux/swtpm.fc swtpm_svirt.pp_FILES = \ $(addprefix $(top_srcdir)/src/selinux/,\ swtpm_svirt.te swtpm.if swtpm.te) \ $(top_builddir)/src/selinux/swtpm.fc swtpm_libvirt.pp_FILES = \ $(addprefix $(top_srcdir)/src/selinux/,\ swtpm_libvirt.te) if WITH_CUSE swtpmcuse.pp_FILES = \ $(addprefix $(top_srcdir)/src/selinux/,\ swtpmcuse.te swtpmcuse.if) \ $(top_builddir)/src/selinux/swtpmcuse.fc endif all: $(POLICIES_BZ2) clean: $(RM) -r tmp $(POLICIES) $(POLICIES_BZ2) PRIORITY ?= 400 selinux-install: $(POLICIES_BZ2) @if test $(shell id -u) != 0; then \ echo "You have to be root for this operation"; exit 1; \ fi semodule --priority $(PRIORITY) --install $(POLICIES_BZ2) restorecon -i "$(prefix)/bin/swtpm" if WITH_CUSE restorecon -i "$(prefix)/bin/swtpm_cuse" endif selinux-uninstall: @if test $(shell id -u) != 0; then \ echo "You have to be root for this operation"; exit 1; \ fi semodule --priority $(PRIORITY) --remove $(patsubst %.pp.bz2,%,$(POLICIES_BZ2)) .PHONY: selinux-install selinux-uninstall %.pp.bz2: %.pp @echo Compressing $^ -\> $@ bzip2 -k -f -9 $^ .SECONDEXPANSION: .NOTPARALLEL: %.pp : $$($$@_FILES) echo "Creating $@ from $^" $(RM) -r $(top_srcdir)/src/selinux/tmp/ cp $^ ./ 2>/dev/null || true make -f /usr/share/selinux/devel/Makefile $@ $(RM) -r ./tmp/ EXTRA_DIST = \ swtpm.fc.in \ swtpm.if \ swtpm.te \ swtpm_svirt.te \ swtpm_libvirt.te \ swtpmcuse.fc.in \ swtpmcuse.if \ swtpmcuse.te CLEANFILES = *.pp *.pp.bz2 swtpm_libvirt.if swtpm_svirt.if *.fc $(top_srcdir)/src/selinux/tmp