File: Makefile.am

package info (click to toggle)
libtpms 0.10.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 13,188 kB
  • sloc: ansic: 120,340; makefile: 829; sh: 336; cpp: 125
file content (74 lines) | stat: -rw-r--r-- 1,669 bytes parent folder | download | duplicates (2)
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
#
# man/man3/Makefile.am
#
# For the license, see the LICENSE file in the root directory.
#


man3_PODS = \
	TPM_IO_Hash_Start.pod \
	TPM_IO_TpmEstablished_Get.pod \
	TPMLIB_CancelCommand.pod \
	TPMLIB_ChooseTPMVersion.pod \
	TPMLIB_DecodeBlob.pod \
	TPMLIB_GetInfo.pod \
	TPMLIB_GetTPMProperty.pod \
	TPMLIB_GetVersion.pod \
	TPMLIB_MainInit.pod \
	TPMLIB_Process.pod \
	TPMLIB_RegisterCallbacks.pod \
	TPMLIB_SetBufferSize.pod \
	TPMLIB_SetDebugFD.pod \
	TPMLIB_SetProfile.pod \
	TPMLIB_SetState.pod \
	TPMLIB_ValidateState.pod \
	TPMLIB_VolatileAll_Store.pod \
	TPMLIB_WasManufactured.pod \
	TPM_Malloc.pod

man3_MANS = \
	TPM_Free.3 \
	TPM_IO_Hash_Data.3 \
	TPM_IO_Hash_End.3 \
	TPMLIB_GetState.3 \
	TPMLIB_SetDebugPrefix.3 \
	TPMLIB_SetDebugLevel.3 \
	TPM_IO_TpmEstablished_Reset.3 \
	TPMLIB_Terminate.3 \
	TPM_Realloc.3

man3_MANS_generated = \
	TPM_IO_Hash_Start.3 \
	TPM_IO_TpmEstablished_Get.3 \
	TPMLIB_CancelCommand.3 \
	TPMLIB_ChooseTPMVersion.3 \
	TPMLIB_DecodeBlob.3 \
	TPMLIB_GetInfo.3 \
	TPMLIB_GetTPMProperty.3 \
	TPMLIB_GetVersion.3 \
	TPMLIB_MainInit.3 \
	TPMLIB_Process.3 \
	TPMLIB_SetDebugFD.3 \
	TPMLIB_SetBufferSize.3 \
	TPMLIB_SetProfile.3 \
	TPMLIB_SetState.3 \
	TPMLIB_RegisterCallbacks.3 \
	TPMLIB_ValidateState.3 \
	TPMLIB_VolatileAll_Store.3 \
	TPMLIB_WasManufactured.3 \
	TPM_Malloc.3

man3_MANS += $(man3_MANS_generated)
BUILD_DATE ?= $$(dpkg-parsechangelog -S Date -l../../debian/changelog)
PODDATE = $$(date -u "+%Y-%m-%d" -d "$(BUILD_DATE)")

%.3 : %.pod
	@pod2man -r "libtpms" \
		-c "" \
		-n $(basename $@) \
		--date="$(PODDATE)" \
		--section=3 $< > $@

EXTRA_DIST = $(man3_MANS) $(man3_PODS)

CLEANFILES = $(man3_MANS_generated)