6 lines
102 B
Makefile
6 lines
102 B
Makefile
|
main:
|
||
|
@g++ -Wall -Wextra -ggdb -o crypto.ex aes.cpp -lcrypto
|
||
|
@./crypto.ex file.txt
|
||
|
|
||
|
clean:
|
||
|
@rm *.ex
|