Add files via upload

This commit is contained in:
Thomas Furtner
2017-04-07 08:11:32 +02:00
committed by GitHub
parent 27bfb2abc8
commit 3e716caac2
5 changed files with 2365 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Makefile for Embedded Linux TPM Toolbox 2 (ELTT2)
# Copyright (c) Infineon Technologies AG
CC=gcc
CFLAGS=-Wall -Wextra
all: eltt2
eltt2: eltt2.c eltt2.h
$(CC) $(CFLAGS) eltt2.c -o eltt2
clean:
rm -rf eltt2