aes/makefile
2016-01-23 22:57:15 +01:00

12 lines
194 B
Makefile

main:
@g++ -Wall -Wextra -ggdb -o crypto.ex aes.cpp -lcrypto --std=c++14
run:
@./crypto.ex file
valgrind:
@valgrind --leak-check=full --track-origins=yes ./crypto.ex file
clean:
@rm *.ex