forked from tpm2-software/tpm2-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
640 lines (585 loc) · 21.8 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
# SPDX-License-Identifier: BSD-3-Clause
# ax_code_coverage
if AUTOCONF_CODE_COVERAGE_2019_01_06
include $(top_srcdir)/aminclude_static.am
clean-local: code-coverage-clean
distclean-local: code-coverage-dist-clean
else
@CODE_COVERAGE_RULES@
endif
include src_vars.mk
ACLOCAL_AMFLAGS = -I m4 --install
INCLUDE_DIRS = -I$(top_srcdir)/tools -I$(top_srcdir)/lib
LIB_COMMON := lib/libcommon.a
AM_CFLAGS := \
$(INCLUDE_DIRS) $(EXTRA_CFLAGS) $(TSS2_ESYS_CFLAGS) $(TSS2_MU_CFLAGS) \
$(CRYPTO_CFLAGS) $(CODE_COVERAGE_CFLAGS) $(TSS2_TCTILDR_CFLAGS) \
$(TSS2_RC_CFLAGS) $(TSS2_SYS_CFLAGS)
AM_LDFLAGS := $(EXTRA_LDFLAGS) $(CODE_COVERAGE_LIBS)
LDADD = \
$(LIB_COMMON) $(TSS2_ESYS_LIBS) $(TSS2_MU_LIBS) $(CRYPTO_LIBS) $(TSS2_TCTILDR_LIBS) \
$(TSS2_RC_LIBS) $(TSS2_SYS_LIBS) $(EFIVAR_LIBS)
AM_DISTCHECK_CONFIGURE_FLAGS = --with-bashcompdir='$$(datarootdir)/bash-completion/completions'
# keep me sorted
bin_PROGRAMS =
FAPI_CFLAGS = $(EXTRA_CFLAGS) $(TSS2_FAPI_CFLAGS) $(CODE_COVERAGE_CFLAGS)
TESTS =
if HAVE_FAPI
bin_PROGRAMS += tools/fapi/tss2
endif
noinst_LIBRARIES = $(LIB_COMMON)
lib_libcommon_a_SOURCES = $(LIB_SRC)
lib_libcommon_a_CFLAGS = -fPIC $(AM_CFLAGS)
tools_fapi_tss2_CFLAGS = $(FAPI_CFLAGS) -DTSS2_TOOLS_MAX="$(words $(tss2_tools))"
tools_fapi_tss2_LDFLAGS = $(EXTRA_LDFLAGS) $(TSS2_FAPI_LIBS)
tools_fapi_tss2_SOURCES = \
tools/fapi/tss2_template.c \
tools/fapi/tss2_template.h \
$(tss2_tools)
tss2_tools = \
tools/fapi/tss2_decrypt.c \
tools/fapi/tss2_encrypt.c \
tools/fapi/tss2_list.c \
tools/fapi/tss2_changeauth.c \
tools/fapi/tss2_delete.c \
tools/fapi/tss2_import.c \
tools/fapi/tss2_getinfo.c \
tools/fapi/tss2_createkey.c \
tools/fapi/tss2_createseal.c \
tools/fapi/tss2_exportkey.c \
tools/fapi/tss2_getcertificate.c \
tools/fapi/tss2_getplatformcertificates.c \
tools/fapi/tss2_gettpmblobs.c \
tools/fapi/tss2_getappdata.c \
tools/fapi/tss2_gettpm2object.c \
tools/fapi/tss2_setappdata.c \
tools/fapi/tss2_setcertificate.c \
tools/fapi/tss2_sign.c \
tools/fapi/tss2_verifysignature.c \
tools/fapi/tss2_verifyquote.c \
tools/fapi/tss2_createnv.c \
tools/fapi/tss2_nvextend.c \
tools/fapi/tss2_nvincrement.c \
tools/fapi/tss2_nvread.c \
tools/fapi/tss2_nvsetbits.c \
tools/fapi/tss2_nvwrite.c \
tools/fapi/tss2_getdescription.c \
tools/fapi/tss2_setdescription.c \
tools/fapi/tss2_pcrextend.c \
tools/fapi/tss2_quote.c \
tools/fapi/tss2_pcrread.c \
tools/fapi/tss2_authorizepolicy.c \
tools/fapi/tss2_exportpolicy.c \
tools/fapi/tss2_import.c \
tools/fapi/tss2_provision.c \
tools/fapi/tss2_getrandom.c \
tools/fapi/tss2_unseal.c \
tools/fapi/tss2_writeauthorizenv.c
# Bundle all the tools into a single program similar to busybox
bin_PROGRAMS += tools/tpm2
tools_tpm2_LDADD = $(LDADD) $(CURL_LIBS)
tools_tpm2_CFLAGS = $(AM_CFLAGS) -DTPM2_TOOLS_MAX="$(words $(tpm2_tools))"
tools_tpm2_SOURCES = \
tools/tpm2_tool.c \
tools/tpm2_tool.h \
$(tpm2_tools)
tpm2_tools = \
tools/misc/tpm2_certifyX509certutil.c \
tools/misc/tpm2_checkquote.c \
tools/misc/tpm2_encodeobject.c \
tools/misc/tpm2_eventlog.c \
tools/misc/tpm2_print.c \
tools/misc/tpm2_rc_decode.c \
tools/tpm2_activatecredential.c \
tools/tpm2_certify.c \
tools/tpm2_changeauth.c \
tools/tpm2_changeeps.c \
tools/tpm2_changepps.c \
tools/tpm2_clear.c \
tools/tpm2_clearcontrol.c \
tools/tpm2_clockrateadjust.c \
tools/tpm2_create.c \
tools/tpm2_createak.c \
tools/tpm2_createek.c \
tools/tpm2_createpolicy.c \
tools/tpm2_setprimarypolicy.c \
tools/tpm2_createprimary.c \
tools/tpm2_dictionarylockout.c \
tools/tpm2_duplicate.c \
tools/tpm2_getcap.c \
tools/tpm2_gettestresult.c \
tools/tpm2_encryptdecrypt.c \
tools/tpm2_evictcontrol.c \
tools/tpm2_flushcontext.c \
tools/tpm2_getekcertificate.c \
tools/tpm2_getrandom.c \
tools/tpm2_gettime.c \
tools/tpm2_hash.c \
tools/tpm2_hierarchycontrol.c \
tools/tpm2_hmac.c \
tools/tpm2_import.c \
tools/tpm2_incrementalselftest.c \
tools/tpm2_load.c \
tools/tpm2_loadexternal.c \
tools/tpm2_makecredential.c \
tools/tpm2_nvdefine.c \
tools/tpm2_nvextend.c \
tools/tpm2_nvincrement.c \
tools/tpm2_nvreadpublic.c \
tools/tpm2_nvread.c \
tools/tpm2_nvreadlock.c \
tools/tpm2_nvundefine.c \
tools/tpm2_nvwrite.c \
tools/tpm2_nvwritelock.c \
tools/tpm2_nvsetbits.c \
tools/tpm2_pcrallocate.c \
tools/tpm2_pcrevent.c \
tools/tpm2_pcrextend.c \
tools/tpm2_pcrread.c \
tools/tpm2_pcrreset.c \
tools/tpm2_policypcr.c \
tools/tpm2_policyauthorize.c \
tools/tpm2_policyauthorizenv.c \
tools/tpm2_policynv.c \
tools/tpm2_policycountertimer.c \
tools/tpm2_policyor.c \
tools/tpm2_policynamehash.c \
tools/tpm2_policytemplate.c \
tools/tpm2_policycphash.c \
tools/tpm2_policypassword.c \
tools/tpm2_policysigned.c \
tools/tpm2_policyticket.c \
tools/tpm2_policyauthvalue.c \
tools/tpm2_policysecret.c \
tools/tpm2_policyrestart.c \
tools/tpm2_policycommandcode.c \
tools/tpm2_policynvwritten.c \
tools/tpm2_policyduplicationselect.c \
tools/tpm2_policylocality.c \
tools/tpm2_quote.c \
tools/tpm2_readclock.c \
tools/tpm2_readpublic.c \
tools/tpm2_rsadecrypt.c \
tools/tpm2_rsaencrypt.c \
tools/tpm2_send.c \
tools/tpm2_selftest.c \
tools/tpm2_setclock.c \
tools/tpm2_shutdown.c \
tools/tpm2_sign.c \
tools/tpm2_certifycreation.c \
tools/tpm2_nvcertify.c \
tools/tpm2_startauthsession.c \
tools/tpm2_startup.c \
tools/tpm2_stirrandom.c \
tools/tpm2_testparms.c \
tools/tpm2_unseal.c \
tools/tpm2_verifysignature.c \
tools/tpm2_setcommandauditstatus.c \
tools/tpm2_getcommandauditdigest.c \
tools/tpm2_getsessionauditdigest.c \
tools/tpm2_geteccparameters.c \
tools/tpm2_ecephemeral.c \
tools/tpm2_commit.c \
tools/tpm2_ecdhkeygen.c \
tools/tpm2_ecdhzgen.c \
tools/tpm2_zgen2phase.c \
tools/tpm2_sessionconfig.c \
tools/tpm2_getpolicydigest.c
# Create the symlinks for each tool to the tpm2 and optional tss2 bundled executables
install-exec-hook:
for tool in $(notdir $(basename $(tpm2_tools))) ; do \
$(LN_S) -f \
"tpm2$(EXEEXT)" \
"$(DESTDIR)$(bindir)/$$tool$(EXEEXT)" ; \
done
if HAVE_FAPI
for tool in $(notdir $(basename $(tss2_tools))) ; do \
$(LN_S) -f \
"tss2$(EXEEXT)" \
"$(DESTDIR)$(bindir)/$$tool$(EXEEXT)" ; \
done
endif
if UNIT
TESTS += $(check_PROGRAMS)
check_PROGRAMS = \
test/unit/test_string_bytes \
test/unit/test_files \
test/unit/test_tpm2_header \
test/unit/test_tpm2_attr_util \
test/unit/test_tpm2_alg_util \
test/unit/test_pcr \
test/unit/test_tpm2_auth_util \
test/unit/test_tpm2_errata \
test/unit/test_tpm2_session \
test/unit/test_tpm2_policy \
test/unit/test_tpm2_util \
test/unit/test_options \
test/unit/test_cc_util \
test/unit/test_tpm2_eventlog \
test/unit/test_tpm2_eventlog_yaml
TESTS += $(ALL_SYSTEM_TESTS)
if HAVE_FAPI
TESTS += $(ALL_FAPI_TESTS)
endif
test_unit_test_string_bytes_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_string_bytes_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_files_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_files_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_header_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_header_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_attr_util_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_attr_util_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_alg_util_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_alg_util_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_pcr_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_pcr_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_auth_util_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_auth_util_LDFLAGS = -Wl,--wrap=Esys_TR_SetAuth \
-Wl,--wrap=Esys_StartAuthSession \
-Wl,--wrap=fopen \
-Wl,--wrap=fread \
-Wl,--wrap=fseek \
-Wl,--wrap=ftell \
-Wl,--wrap=feof, \
-Wl,--wrap=fclose
test_unit_test_tpm2_auth_util_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_errata_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_errata_LDFLAGS = -Wl,--wrap=Esys_GetCapability
test_unit_test_tpm2_errata_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_session_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_session_LDFLAGS = -Wl,--wrap=Esys_StartAuthSession \
-Wl,--wrap=tpm2_context_save \
-Wl,--wrap=Esys_ContextLoad \
-Wl,--wrap=Esys_PolicyRestart \
-Wl,--wrap=Esys_TR_GetName \
-Wl,--wrap=tpm2_flush_context
test_unit_test_tpm2_session_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_policy_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_policy_LDFLAGS = -Wl,--wrap=Esys_StartAuthSession \
-Wl,--wrap=Esys_PolicyPCR \
-Wl,--wrap=Esys_PCR_Read \
-Wl,--wrap=Esys_PolicyGetDigest \
-Wl,--wrap=Esys_FlushContext
test_unit_test_tpm2_policy_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_util_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_util_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_options_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_options_LDFLAGS = -Wl,--wrap=Tss2_TctiLdr_Initialize \
-Wl,--wrap=tpm2_util_getenv
test_unit_test_options_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_cc_util_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_cc_util_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_eventlog_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_eventlog_LDADD = $(CMOCKA_LIBS) $(LDADD)
test_unit_test_tpm2_eventlog_yaml_CFLAGS = $(AM_CFLAGS) $(CMOCKA_CFLAGS)
test_unit_test_tpm2_eventlog_yaml_LDADD = $(CMOCKA_LIBS) $(LDADD)
AM_TESTS_ENVIRONMENT = \
export TPM2_ABRMD=$(TPM2_ABRMD); \
export TPM2_SIM=$(TPM2_SIM); \
export PATH=$(abs_builddir)/tools:$(abs_builddir)/tools/misc:$(abs_top_srcdir)/test/integration:$(abs_builddir)/tools/fapi:$(PATH); \
export TPM2_TOOLS_TEST_FIXTURES=$(abs_top_srcdir)/test/integration/fixtures; \
export abs_builddir=$(abs_builddir); \
export abs_srcdir=$(abs_srcdir); \
export PYTHON=$(PYTHON); \
export TPM2_TOOLS_TEST_FIXTURES;
if PERSISTENT
AM_TESTS_ENVIRONMENT += \
TPM2TOOLS_TEST_PERSISTENT=true;
else
AM_TESTS_ENVIRONMENT += \
TPM2TOOLS_TEST_PERSISTENT=false;
endif
SH_LOG_COMPILER = dbus-run-session bash
AM_SH_LOG_FLAGS = --
endif
TEST_EXTENSIONS = .sh
check-hook:
rm -rf .lock_file
EXTRA_DIST_IGNORE = \
.gitignore \
.deps
EXTRA_DIST = \
bootstrap \
docs/AUTHORS.md \
docs/CHANGELOG.md \
docs/CONTRIBUTING.md \
docs/INSTALL.md \
docs/LICENSE \
docs/MAINTAINERS.md \
docs/README.md \
docs/RELEASE.md \
man \
scripts \
test
if HAVE_MAN_PAGES
dist_man1_MANS := \
man/man1/tpm2_activatecredential.1 \
man/man1/tpm2_certify.1 \
man/man1/tpm2_certifyX509certutil.1 \
man/man1/tpm2_changeauth.1 \
man/man1/tpm2_changeeps.1 \
man/man1/tpm2_changepps.1 \
man/man1/tpm2_checkquote.1 \
man/man1/tpm2_clear.1 \
man/man1/tpm2_clearcontrol.1 \
man/man1/tpm2_clockrateadjust.1 \
man/man1/tpm2_create.1 \
man/man1/tpm2_createak.1 \
man/man1/tpm2_createek.1 \
man/man1/tpm2_createpolicy.1 \
man/man1/tpm2_setprimarypolicy.1 \
man/man1/tpm2_createprimary.1 \
man/man1/tpm2_dictionarylockout.1 \
man/man1/tpm2_duplicate.1 \
man/man1/tpm2_encodeobject.1 \
man/man1/tpm2_getcap.1 \
man/man1/tpm2_encryptdecrypt.1 \
man/man1/tpm2_eventlog.1 \
man/man1/tpm2_evictcontrol.1 \
man/man1/tpm2_flushcontext.1 \
man/man1/tpm2_getekcertificate.1 \
man/man1/tpm2_getrandom.1 \
man/man1/tpm2_gettestresult.1 \
man/man1/tpm2_gettime.1 \
man/man1/tpm2_hierarchycontrol.1 \
man/man1/tpm2_hash.1 \
man/man1/tpm2_hmac.1 \
man/man1/tpm2_import.1 \
man/man1/tpm2_incrementalselftest.1 \
man/man1/tpm2_load.1 \
man/man1/tpm2_loadexternal.1 \
man/man1/tpm2_makecredential.1 \
man/man1/tpm2_nvdefine.1 \
man/man1/tpm2_nvextend.1 \
man/man1/tpm2_nvincrement.1 \
man/man1/tpm2_nvreadpublic.1 \
man/man1/tpm2_nvread.1 \
man/man1/tpm2_nvreadlock.1 \
man/man1/tpm2_nvundefine.1 \
man/man1/tpm2_nvwrite.1 \
man/man1/tpm2_nvwritelock.1 \
man/man1/tpm2_nvsetbits.1 \
man/man1/tpm2_pcrallocate.1 \
man/man1/tpm2_pcrevent.1 \
man/man1/tpm2_pcrextend.1 \
man/man1/tpm2_pcrread.1 \
man/man1/tpm2_pcrreset.1 \
man/man1/tpm2_policypcr.1 \
man/man1/tpm2_policyrestart.1 \
man/man1/tpm2_policycommandcode.1 \
man/man1/tpm2_policynvwritten.1 \
man/man1/tpm2_policyduplicationselect.1 \
man/man1/tpm2_policylocality.1 \
man/man1/tpm2_policyauthorize.1 \
man/man1/tpm2_policyauthorizenv.1 \
man/man1/tpm2_policynv.1 \
man/man1/tpm2_policycountertimer.1 \
man/man1/tpm2_policyor.1 \
man/man1/tpm2_policynamehash.1 \
man/man1/tpm2_policytemplate.1 \
man/man1/tpm2_policycphash.1 \
man/man1/tpm2_policypassword.1 \
man/man1/tpm2_policysigned.1 \
man/man1/tpm2_policyticket.1 \
man/man1/tpm2_policyauthvalue.1 \
man/man1/tpm2_policysecret.1 \
man/man1/tpm2_print.1 \
man/man1/tpm2_quote.1 \
man/man1/tpm2_rc_decode.1 \
man/man1/tpm2_readclock.1 \
man/man1/tpm2_readpublic.1 \
man/man1/tpm2_rsadecrypt.1 \
man/man1/tpm2_rsaencrypt.1 \
man/man1/tpm2_send.1 \
man/man1/tpm2_selftest.1 \
man/man1/tpm2_setclock.1 \
man/man1/tpm2_shutdown.1 \
man/man1/tpm2_sign.1 \
man/man1/tpm2_certifycreation.1 \
man/man1/tpm2_nvcertify.1 \
man/man1/tpm2_startauthsession.1 \
man/man1/tpm2_startup.1 \
man/man1/tpm2_stirrandom.1 \
man/man1/tpm2_testparms.1 \
man/man1/tpm2_unseal.1 \
man/man1/tpm2_verifysignature.1 \
man/man1/tpm2_setcommandauditstatus.1 \
man/man1/tpm2_getcommandauditdigest.1 \
man/man1/tpm2_getsessionauditdigest.1 \
man/man1/tpm2_geteccparameters.1 \
man/man1/tpm2_ecephemeral.1 \
man/man1/tpm2_commit.1 \
man/man1/tpm2_ecdhkeygen.1 \
man/man1/tpm2_ecdhzgen.1 \
man/man1/tpm2_zgen2phase.1 \
man/man1/tpm2_sessionconfig.1 \
man/man1/tpm2_getpolicydigest.1 \
man/man1/tpm2.1
if HAVE_FAPI
dist_man1_MANS += \
man/man1/tss2_list.1 \
man/man1/tss2_changeauth.1 \
man/man1/tss2_delete.1 \
man/man1/tss2_import.1 \
man/man1/tss2_decrypt.1 \
man/man1/tss2_encrypt.1 \
man/man1/tss2_getinfo.1 \
man/man1/tss2_createnv.1 \
man/man1/tss2_nvread.1 \
man/man1/tss2_nvextend.1 \
man/man1/tss2_nvincrement.1 \
man/man1/tss2_nvsetbits.1 \
man/man1/tss2_nvwrite.1 \
man/man1/tss2_createkey.1 \
man/man1/tss2_createseal.1 \
man/man1/tss2_getcertificate.1 \
man/man1/tss2_getplatformcertificates.1 \
man/man1/tss2_gettpmblobs.1 \
man/man1/tss2_getappdata.1 \
man/man1/tss2_gettpm2object.1 \
man/man1/tss2_setappdata.1 \
man/man1/tss2_setcertificate.1 \
man/man1/tss2_exportkey.1 \
man/man1/tss2_sign.1 \
man/man1/tss2_verifysignature.1 \
man/man1/tss2_verifyquote.1 \
man/man1/tss2_getdescription.1 \
man/man1/tss2_setdescription.1 \
man/man1/tss2_pcrextend.1 \
man/man1/tss2_quote.1 \
man/man1/tss2_pcrread.1 \
man/man1/tss2_provision.1 \
man/man1/tss2_authorizepolicy.1 \
man/man1/tss2_exportpolicy.1 \
man/man1/tss2_unseal.1 \
man/man1/tss2_import.1 \
man/man1/tss2_getrandom.1 \
man/man1/tss2_writeauthorizenv.1
endif
endif
MARKDOWN_COMMON_DEPS = \
man/common/alg.md \
man/common/authorizations.md \
man/common/ctxobj.md \
man/common/footer.md \
man/common/hash.md \
man/common/obj-attrs.md \
man/common/object-alg.md \
man/common/options.md \
man/common/pcrs_format.md \
man/common/policy-limitations.md \
man/common/pubkey.md \
man/common/returns.md \
man/common/signature.md \
man/common/signschemes.md \
man/common/tcti.md
man/man1/%.1 : man/%.1.md $(MARKDOWN_COMMON_DEPS)
$(AM_V_GEN)rm -f $@ && \
mkdir -p man/man1 && \
sed -e '/\[common options\]/r $(top_srcdir)/man/common/options.md' \
-e '/\[common options\]/d' \
-e '/\[common tcti options\]/r $(top_srcdir)/man/common/tcti.md' \
-e '/\[common tcti options\]/d' \
-e '/\[common tss2 options\]/r $(top_srcdir)/man/common/tss2-options.md' \
-e '/\[common tss2 options\]/d' \
-e '/\[common fapi references\]/r $(top_srcdir)/man/common/tss2-fapi-references.md' \
-e '/\[common fapi references\]/d' \
-e '/\[authorization formatting\]/r $(top_srcdir)/man/common/authorizations.md' \
-e '/\[authorization formatting\]/d' \
-e '/\[context object format\]/r $(top_srcdir)/man/common/ctxobj.md' \
-e '/\[context object format\]/d' \
-e '/\[supported hash algorithms\]/r $(top_srcdir)/man/common/hash.md' \
-e '/\[supported hash algorithms\]/d' \
-e '/\[algorithm specifiers\]/r $(top_srcdir)/man/common/alg.md' \
-e '/\[algorithm specifiers\]/d' \
-e '/\[supported public object algorithms\]/r $(top_srcdir)/man/common/object-alg.md' \
-e '/\[supported public object algorithms\]/d' \
-e '/\[supported signing algorithms\]/r $(top_srcdir)/man/common/sign-alg.md' \
-e '/\[supported signing algorithms\]/d' \
-e '/\[nv attributes\]/r $(top_srcdir)/man/common/nv-attrs.md' \
-e '/\[nv attributes\]/d' \
-e '/\[pcr bank specifiers\]/r $(top_srcdir)/man/common/pcr.md' \
-e '/\[pcr bank specifiers\]/d' \
-e '/\[PCR output file format specifiers\]/r $(top_srcdir)/man/common/pcrs_format.md' \
-e '/\[PCR output file format specifiers\]/d' \
-e '/\[pubkey options\]/r $(top_srcdir)/man/common/pubkey.md' \
-e '/\[pubkey options\]/d' \
-e '/\[signature format specifiers\]/r $(top_srcdir)/man/common/signature.md' \
-e '/\[signature format specifiers\]/d' \
-e '/\[object attribute specifiers\]/r $(top_srcdir)/man/common/obj-attrs.md' \
-e '/\[object attribute specifiers\]/d' \
-e '/\[supported signing schemes\]/r $(top_srcdir)/man/common/signschemes.md' \
-e '/\[supported signing schemes\]/d' \
-e '/\[limitations\]/r $(top_srcdir)/man/common/policy-limitations.md' \
-e '/\[limitations\]/d' \
-e '/\[returns\]/r $(top_srcdir)/man/common/returns.md' \
-e '/\[returns\]/d' \
-e '/\[footer\]/r $(top_srcdir)/man/common/footer.md' \
-e '/\[footer\]/d' \
-e '/\[protection details\]/r $(top_srcdir)/man/common/protection-details.md' \
-e '/\[protection details\]/d' \
< $< | pandoc -s -t man > $@
CLEANFILES = $(dist_man1_MANS)
bashcompdir=@bashcompdir@
dist_bashcomp_DATA=dist/bash-completion/tpm2-tools/tpm2_completion.bash
if HAVE_FAPI
dist_bashcomp_DATA+= \
dist/bash-completion/tpm2-tools/tss2_decrypt \
dist/bash-completion/tpm2-tools/tss2_encrypt \
dist/bash-completion/tpm2-tools/tss2_list \
dist/bash-completion/tpm2-tools/tss2_changeauth \
dist/bash-completion/tpm2-tools/tss2_delete \
dist/bash-completion/tpm2-tools/tss2_import \
dist/bash-completion/tpm2-tools/tss2_getinfo \
dist/bash-completion/tpm2-tools/tss2_createkey \
dist/bash-completion/tpm2-tools/tss2_createseal \
dist/bash-completion/tpm2-tools/tss2_exportkey \
dist/bash-completion/tpm2-tools/tss2_getcertificate \
dist/bash-completion/tpm2-tools/tss2_getplatformcertificates \
dist/bash-completion/tpm2-tools/tss2_gettpmblobs \
dist/bash-completion/tpm2-tools/tss2_setcertificate \
dist/bash-completion/tpm2-tools/tss2_getappdata \
dist/bash-completion/tpm2-tools/tss2_gettpm2object \
dist/bash-completion/tpm2-tools/tss2_setappdata \
dist/bash-completion/tpm2-tools/tss2_sign \
dist/bash-completion/tpm2-tools/tss2_verifysignature \
dist/bash-completion/tpm2-tools/tss2_verifyquote \
dist/bash-completion/tpm2-tools/tss2_createnv \
dist/bash-completion/tpm2-tools/tss2_nvextend \
dist/bash-completion/tpm2-tools/tss2_nvincrement \
dist/bash-completion/tpm2-tools/tss2_nvread \
dist/bash-completion/tpm2-tools/tss2_nvsetbits \
dist/bash-completion/tpm2-tools/tss2_nvwrite \
dist/bash-completion/tpm2-tools/tss2_getdescription \
dist/bash-completion/tpm2-tools/tss2_setdescription \
dist/bash-completion/tpm2-tools/tss2_pcrextend \
dist/bash-completion/tpm2-tools/tss2_quote \
dist/bash-completion/tpm2-tools/tss2_pcrread \
dist/bash-completion/tpm2-tools/tss2_authorizepolicy \
dist/bash-completion/tpm2-tools/tss2_exportpolicy \
dist/bash-completion/tpm2-tools/tss2_provision \
dist/bash-completion/tpm2-tools/tss2_getrandom \
dist/bash-completion/tpm2-tools/tss2_unseal \
dist/bash-completion/tpm2-tools/tss2_writeauthorizenv \
dist/bash-completion/tpm2-tools/tss2
endif
install-data-hook:
cd $(DESTDIR)$(bashcompdir) && \
for tool in $(bin_PROGRAMS); do \
[ "$${tool}" = "$${tool#tools/fapi/*}" ] && $(LN_S) -f tpm2_completion.bash $${tool##*/}; \
done
uninstall-hook:
cd $(DESTDIR)$(bashcompdir) && \
for tool in $(bin_PROGRAMS); do \
[ "$${tool}" = "$${tool#tools/fapi/*}" -a -L $${tool##*/} ] && rm -f $${tool##*/}; \
done
dist-hook:
for f in $(EXTRA_DIST_IGNORE); do \
rm -rf `find $(distdir) -name $$f`; \
done;
if !HAVE_PANDOC
# If pandoc is not enabled, we want to complain that you need pandoc for make dist,
# so hook the target and complain.
@(>&2 echo "You do not have pandoc, a requirement for the distribution of manpages")
@exit 1
endif