Files
eltt2/Makefile
2017-04-07 08:11:32 +02:00

13 lines
213 B
Makefile

# 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