From 3351fedea7b12fdf3e6c8f32b4800365f38cf14a Mon Sep 17 00:00:00 2001 From: Pramod Raghavendra Jayathirth Date: Tue, 12 Jun 2018 09:13:01 -0700 Subject: Change installation directory for tpm-util changing the path from the user's home directory to root's home directory for duplicate and import utlity Change-Id: I1550492925fdd0e3096e7aab853c16896819d61c Issue-ID: AAF-334 Signed-off-by: Pramod Raghavendra Jayathirth --- tpm-util/import/sampleMakefile | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'tpm-util/import') diff --git a/tpm-util/import/sampleMakefile b/tpm-util/import/sampleMakefile index 55c180a..96ac729 100644 --- a/tpm-util/import/sampleMakefile +++ b/tpm-util/import/sampleMakefile @@ -6,24 +6,23 @@ AR = ar LDDFLAGS += -fPIC ARFLAGS = -rc -TSS_DIR?=/home/pramod/tpm2-tss +TSS_DIR?=/tpm2-tss OUTPUT=ossl_tpm_import OBJS= util.o \ tpm_wrapper.o \ - main.o + main.o +CFLAGS += -g -fPIC -I./include -I${TSS_DIR}/include/ -I$(TSS_DIR)/sysapi/include -CFLAGS += -g -fPIC -I./include -I${TSS_DIR}/include/ -I$(TSS_DIR)/sysapi/include - -LDFLAGS += -ldl -L/usr/local/lib/ -lsapi -ltcti-device -ltcti-tabrmd +LDFLAGS += -ldl -L/usr/local/lib/ -lsapi -ltcti-device -ltcti-tabrmd LIBS = -lpthread -lcrypto -lssl %.o : %.c $(CC) -c $(CFLAGS) $< -o $@ - + $(OUTPUT): $(OBJS) $(CC) $(OBJS) $(LDFLAGS) ${LIBS} -o $(OUTPUT) @@ -35,4 +34,4 @@ install: @set -e; for i in $(OUTPUT); do mv $$i ../../bin/$$i ; done clean: - rm -f *.o $(OUTPUT) *.so + rm -f *.o $(OUTPUT) *.so -- cgit 1.2.3-korg