aes/makefile

8 lines
108 B
Makefile
Raw Normal View History

main:
@g++ -Wall -Wextra -ggdb -o crypto.ex aes.cpp -lcrypto
2016-01-20 19:25:02 +00:00
run:
@./crypto.ex file.txt
clean:
@rm *.ex