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