mirror of
https://github.com/Infineon/eltt2.git
synced 2026-01-12 03:23:46 +00:00
13 lines
213 B
Makefile
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
|