aboutsummaryrefslogtreecommitdiffstats
path: root/tpm-util/duplicate/sampleMakefile
diff options
context:
space:
mode:
Diffstat (limited to 'tpm-util/duplicate/sampleMakefile')
-rw-r--r--tpm-util/duplicate/sampleMakefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/tpm-util/duplicate/sampleMakefile b/tpm-util/duplicate/sampleMakefile
new file mode 100644
index 0000000..5139954
--- /dev/null
+++ b/tpm-util/duplicate/sampleMakefile
@@ -0,0 +1,42 @@
+
+CC = gcc
+#CC = g++
+LD = ld
+AR = ar
+LDDFLAGS += -fPIC
+ARFLAGS = -rc
+
+TSS_DIR?=/home/pramod/tpm2-tss
+OPENSSL_DIR?=/usr/local/bin/openssl
+
+OUTPUT=ossl_tpm_duplicate
+
+OBJS= util.o \
+ marshal.o \
+ crypto_aux.o \
+ tpm_duplication_aux.o \
+ main.o
+
+
+CFLAGS += -g -fPIC -I./include -I${TSS_DIR}/include/ -I$(TSS_DIR)/sysapi/include #-I${OPENSSL_DIR}/include/
+
+#LDFLAGS += -L${OPENSSL_DIR}/lib -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)
+
+.PHONY: all
+all: $(OUTPUT)
+
+install:
+ @set -e; for i in $(OUTPUT); do mv $$i ../../bin/$$i ; done
+
+clean:
+ rm -f *.o $(OUTPUT) *.so