mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-19 03:24:50 -04:00
13 lines
122 B
Makefile
13 lines
122 B
Makefile
CC = gcc
|
|
CFLAGS = -g
|
|
|
|
all: aes
|
|
|
|
aes: aes.c
|
|
$(CC) $(CFLAGS) aes.c -o aes
|
|
|
|
clean:
|
|
rm -rf aes
|
|
rm -f *~
|
|
|
|
.PHONY: all clean
|