Files
eltt2/Makefile
Peter Huewe 771b11f775 Make eltt2 c99 compliant
Some implicit headerfiles were missing, if used without -std=gnu99.
Since we do not rely on gnu99 behavior by including the header files,
we can use -std=c99, which we state explicitly in the Makefile now.

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
2018-03-22 23:29:33 +01:00

14 lines
226 B
Makefile

# Makefile for Embedded Linux TPM Toolbox 2 (ELTT2)
# Copyright (c) Infineon Technologies AG
CC=gcc
CFLAGS=-Wall -Wextra -std=c99 -g
all: eltt2
eltt2: eltt2.c eltt2.h
$(CC) $(CFLAGS) eltt2.c -o eltt2
clean:
rm -rf eltt2