Files
eltt2/Makefile

14 lines
217 B
Makefile

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