diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..40af8ad448a7a7f8335a1ce308d93f8cbbb034d7 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +CC = gcc + +RM = rm -f + + +default: all + +all: certcheck + +certcheck: certexample.c + $(CC) certexample.c -l ssl -l crypto -o certcheck + +clean veryclean: + $(RM) certcheck + +