mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-12-28 15:20:51 +00:00
- Move swtpm_localca's sources out of samples/ (where they no longer belong now that swtpm_localca is a binary) to src/swtpm_localca/. - Tests now call the swtpm_localca binary directly at the location where it was built, as they do with all other compiled programs. - Simplify samples/swtpm-localca.in and delete swtpm-localca.2inst, removing the now-unnecessary logic to selectively call swtpm_localca from different locations (samples/ when running tests vs. /usr/bin/ post-installation). Signed-off-by: Nick Chevsky <nchevsky@users.noreply.github.com>
20 lines
236 B
Makefile
20 lines
236 B
Makefile
#
|
|
# src/Makefile.am
|
|
#
|
|
# For the license, see the COPYING file in the root directory.
|
|
#
|
|
|
|
SUBDIRS = \
|
|
utils \
|
|
swtpm \
|
|
swtpm_bios \
|
|
swtpm_cert \
|
|
swtpm_ioctl \
|
|
swtpm_localca \
|
|
swtpm_setup
|
|
|
|
if WITH_SELINUX
|
|
SUBDIRS += \
|
|
selinux
|
|
endif
|