8 lines
157 B
Makefile
8 lines
157 B
Makefile
|
pegh : pegh.c
|
||
|
cc -Wall -Wextra -Werror -std=c89 -pedantic \
|
||
|
-Wstrict-prototypes -Wold-style-definition \
|
||
|
pegh.c -lcrypto -O3 -o pegh
|
||
|
|
||
|
clean :
|
||
|
rm -f pegh
|