mirror of
https://github.com/Infineon/eltt2.git
synced 2026-01-11 15:10:45 +00:00
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>
14 lines
226 B
Makefile
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
|