mirror of
https://github.com/markqvist/micro-aes
synced 2026-08-12 18:34:55 -04:00
7 lines
144 B
Makefile
7 lines
144 B
Makefile
all:
|
|
cd ./test && gcc encrypt.c ../aes.c -o encrypt
|
|
clean:
|
|
rm ./test/encrypt
|
|
clang:
|
|
cd ./test && clang -Wall encrypt.c ../aes.c -o encrypt
|
|
|