Home | History | Annotate | Line # | Download | only in man8
      1 #
      2 # Makefile.am
      3 #
      4 #       The Initial Developer of the Original Code is International
      5 #       Business Machines Corporation. Portions created by IBM
      6 #       Corporation are Copyright (C) 2005 International Business
      7 #       Machines Corporation. All Rights Reserved.
      8 #
      9 #       This program is free software; you can redistribute it and/or modify
     10 #       it under the terms of the Common Public License as published by
     11 #       IBM Corporation; either version 1 of the License, or (at your option)
     12 #       any later version.
     13 #
     14 #       This program is distributed in the hope that it will be useful,
     15 #       but WITHOUT ANY WARRANTY; without even the implied warranty of
     16 #       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     17 #       Common Public License for more details.
     18 #
     19 #       You should have received a copy of the Common Public License
     20 #       along with this program; if not, a copy can be viewed at
     21 #       http://www.opensource.org/licenses/cpl1.0.php.
     22 #
     23 
     24 man8_PODS =
     25 
     26 if TSS_LIB_IS_12
     27 man8_PODS +=	tpm_nvdefine.pod	\
     28 		tpm_nvinfo.pod		\
     29 		tpm_nvread.pod		\
     30 		tpm_nvrelease.pod	\
     31 		tpm_nvwrite.pod
     32 endif
     33 
     34 man8_MANS =	tpm_changeownerauth.8	\
     35 		tpm_clear.8		\
     36 		tpm_createek.8		\
     37 		tpm_getpubek.8		\
     38 		tpm_restrictpubek.8	\
     39 		tpm_selftest.8		\
     40 		tpm_setactive.8		\
     41 		tpm_setclearable.8	\
     42 		tpm_setenable.8		\
     43 		tpm_setownable.8	\
     44 		tpm_setpresence.8	\
     45 		tpm_takeownership.8	\
     46 		$(addsuffix .8,$(basename $(man8_PODS)))
     47 
     48 if TSS_LIB_IS_12
     49 man8_MANS+=tpm_revokeek.8 tpm_setoperatorauth.8 tpm_resetdalock.8
     50 endif
     51 
     52 EXTRA_DIST = $(man8_MANS)
     53 
     54 %.8 : %.pod
     55 	@pod2man -r "TPM Management" \
     56 		-c "" \
     57 		-n $(basename $@) \
     58 		--section=8 $< > $@
     59