mirror of
https://github.com/stefanberger/swtpm.git
synced 2026-01-26 02:16:20 +00:00
This is a 1:1 rewrite of swtpm_localca in 'C' as a final step to get rid of the python dependency. It addresses issue #437. Tested on: Cygwin, Fedora 33, Ubuntu Xenial & Bionic, FreeBSD, DragonFlyBSD, OpenBSD (i386), Mac, Debian (recent), Centos-8, CentOS (recent), Alpine (recent), OpenSUSE (recent), Fedora 28 PPC Big Endian Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
31 lines
403 B
Makefile
31 lines
403 B
Makefile
#
|
|
# Makefile.am
|
|
#
|
|
# For the license, see the COPYING file in the root directory.
|
|
#
|
|
|
|
SUBDIRS = \
|
|
etc \
|
|
include \
|
|
man \
|
|
samples \
|
|
src \
|
|
tests
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = \
|
|
CHANGES \
|
|
INSTALL \
|
|
LICENSE \
|
|
COPYING \
|
|
README \
|
|
autogen.sh
|
|
|
|
if WITH_SELINUX
|
|
selinux-install selinux-uninstall:
|
|
@cd src/selinux && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
endif
|
|
|
|
.PHONY: selinux-install selinux-uninstall
|