]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/analyze/meson.build
analyze: add "srk" verb to extract current srk from TPM2 chip
[thirdparty/systemd.git] / src / analyze / meson.build
CommitLineData
db9ecf05 1# SPDX-License-Identifier: LGPL-2.1-or-later
3a726fcd 2
f1b98127
ZJS
3systemd_analyze_sources = files(
4 'analyze-blame.c',
f1b98127 5 'analyze-calendar.c',
f1b98127 6 'analyze-capability.c',
f1b98127 7 'analyze-cat-config.c',
bc012a3e 8 'analyze-compare-versions.c',
f1b98127 9 'analyze-condition.c',
f1b98127 10 'analyze-critical-chain.c',
f1b98127 11 'analyze-dot.c',
f1b98127 12 'analyze-dump.c',
f1b98127 13 'analyze-exit-status.c',
5f43c97c 14 'analyze-fdstore.c',
f1b98127 15 'analyze-filesystems.c',
a62e12da 16 'analyze-image-policy.c',
f1b98127 17 'analyze-inspect-elf.c',
f1b98127 18 'analyze-log-control.c',
f50535af 19 'analyze-malloc.c',
f70c90f5 20 'analyze-pcrs.c',
f1b98127 21 'analyze-plot.c',
f1b98127 22 'analyze-security.c',
f1b98127 23 'analyze-service-watchdogs.c',
d30693f3 24 'analyze-srk.c',
f1b98127 25 'analyze-syscall-filter.c',
f1b98127 26 'analyze-time.c',
f1b98127 27 'analyze-time-data.c',
f1b98127 28 'analyze-timespan.c',
f1b98127 29 'analyze-timestamp.c',
f1b98127 30 'analyze-unit-files.c',
f1b98127 31 'analyze-unit-paths.c',
f1b98127 32 'analyze-verify.c',
f1b98127 33 'analyze-verify-util.c',
4a7ee0a5
JJ
34 'analyze.c',
35)
e025c9df 36
f727f3b9
YW
37executables += [
38 executable_template + {
39 'name' : 'systemd-analyze',
40 'public' : conf.get('ENABLE_ANALYZE') == 1,
41 'sources' : systemd_analyze_sources,
42 'include_directories' : core_includes,
43 'link_with' : [
44 libcore,
45 libshared,
46 ],
47 'dependencies' : libseccomp,
48 'install' : conf.get('ENABLE_ANALYZE') == 1,
49 },
130c87b1 50 core_test_template + {
822cd3ff
JJ
51 'sources' : files(
52 'test-verify.c',
53 'analyze-verify-util.c',
54 ),
822cd3ff 55 },
e025c9df 56]