aes/makefile

12 lines
194 B
Makefile
Raw Normal View History

main:
2016-01-23 21:57:15 +00:00
@g++ -Wall -Wextra -ggdb -o crypto.ex aes.cpp -lcrypto --std=c++14
2016-01-20 19:25:02 +00:00
run:
2016-01-23 21:57:15 +00:00
@./crypto.ex file
valgrind:
@valgrind --leak-check=full --track-origins=yes ./crypto.ex file
clean:
2016-01-23 21:57:15 +00:00
@rm *.ex