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
|
#################################################################################
# #
# Linux TPM2 Utilities Makefile for minimal TSS #
# Written by Ken Goldman #
# IBM Thomas J. Watson Research Center #
# $Id: makefile.min 1034 2017-06-30 20:49:51Z kgoldman $ #
# #
# (c) Copyright IBM Corporation 2016, 2017 #
# #
# All rights reserved. #
# #
# Redistribution and use in source and binary forms, with or without #
# modification, are permitted provided that the following conditions are #
# met: #
# #
# Redistributions of source code must retain the above copyright notice, #
# this list of conditions and the following disclaimer. #
# #
# Redistributions in binary form must reproduce the above copyright #
# notice, this list of conditions and the following disclaimer in the #
# documentation and/or other materials provided with the distribution. #
# #
# Neither the names of the IBM Corporation nor the names of its #
# contributors may be used to endorse or promote products derived from #
# this software without specific prior written permission. #
# #
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS #
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT #
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR #
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT #
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, #
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT #
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, #
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY #
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT #
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE #
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #
# #
#################################################################################
# makefile to build a TSS library that does not require file read/write or crypto
# within the library
#
# See the documentation for limitations.
# C compiler
CC = /usr/bin/gcc
# compile - common flags for TSS library and applications
CCFLAGS += \
-DTPM_POSIX \
-DTPM_TSS_NOFILE \
-DTPM_TSS_NOCRYPTO
# -DTPM_NOSOCKET
# compile - for TSS library
CCLFLAGS += -I. -DTPM_TSS
# compile - for applications
CCAFLAGS += -I.
# link - common flags flags TSS library and applications
LNFLAGS += -DTPM_POSIX \
-L.
# link - for TSS library
# This is an alternative to using the bfd linker on Ubuntu
#LNLFLAGS = -lcrypto
# link - for applications, TSS path, TSS and OpenSSl libraries
LNAFLAGS += -Wl,-rpath,.
LNALIBS += -ltssmin -lcrypto
# shared library
LIBTSS=libtssmin.so
#
ALL = $(LIBTSS)
#TSS_HEADERS = tss2/tssfile.h
# default TSS library
TSS_OBJS =
# common to all builds
include makefile-common
# default build target
all: writeapp signapp
# TSS shared library source
tss.o: $(TSS_HEADERS) tss.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tss.c
tssproperties.o: $(TSS_HEADERS) tssproperties.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tssproperties.c
tssauth.o: $(TSS_HEADERS) tssauth.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tssauth.c
tssmarshal.o: $(TSS_HEADERS) tssmarshal.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tssmarshal.c
tsscryptoh.o: $(TSS_HEADERS) tsscryptoh.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tsscryptoh.c
tsscrypto.o: $(TSS_HEADERS) tsscrypto.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tsscrypto.c
tssutils.o: $(TSS_HEADERS) tssutils.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tssutils.c
tsssocket.o: $(TSS_HEADERS) tsssocket.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tsssocket.c
tssdev.o: $(TSS_HEADERS) tssdev.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tssdev.c
tsstransmit.o: $(TSS_HEADERS) tsstransmit.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tsstransmit.c
tssresponsecode.o: $(TSS_HEADERS) tssresponsecode.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tssresponsecode.c
tssccattributes.o: $(TSS_HEADERS) tssccattributes.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tssccattributes.c
fail.o: $(TSS_HEADERS) fail.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC fail.c
tssprint.o: $(TSS_HEADERS) tssprint.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tssprint.c
Unmarshal.o: $(TSS_HEADERS) Unmarshal.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC Unmarshal.c
Commands.o: $(TSS_HEADERS) Commands.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC Commands.c
CommandAttributeData.o: $(TSS_HEADERS) CommandAttributeData.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC CommandAttributeData.c
ntc2lib.o: $(TSS_HEADERS) ntc2lib.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC ntc2lib.c
tssntc.o: $(TSS_HEADERS) tssntc.c
$(CC) $(CCFLAGS) $(CCLFLAGS) -fPIC tssntc.c
# TSS shared library build
$(LIBTSS): $(TSS_OBJS)
$(CC) $(LNFLAGS) $(LNLFLAGS) -shared -o $(LIBTSS) $(TSS_OBJS)
.PHONY: clean
.PRECIOUS: %.o
clean:
rm -f $(TSS_OBJS) \
ekutils.o cryptoutils.o \
$(ALL)
# applications
signapp: tss2/tss.h signapp.o ekutils.o cryptoutils.o tsscryptoh.o tsscrypto.o $(LIBTSS)
$(CC) $(LNFLAGS) $(LNAFLAGS) signapp.o \
ekutils.o cryptoutils.o tsscryptoh.o tsscrypto.o $(LNALIBS) -o signapp
writeapp: tss2/tss.h writeapp.o ekutils.o cryptoutils.o tsscryptoh.o tsscrypto.o $(LIBTSS)
$(CC) $(LNFLAGS) $(LNAFLAGS) writeapp.o \
cryptoutils.o ekutils.o tsscryptoh.o tsscrypto.o $(LNALIBS) -o writeapp
# for applications, not for TSS library
%.o: %.c tss2/tss.h
$(CC) $(CCFLAGS) $(CCAFLAGS) $< -o $@
|