From: Simon Ruderich Date: Sun, 27 Feb 2011 01:54:35 +0000 (+0100) Subject: Makefile: Add. X-Git-Tag: 0.1~42 X-Git-Url: https://ruderich.org/simon/gitweb/?p=tlsproxy%2Ftlsproxy.git;a=commitdiff_plain;h=236a23e44f4d61d52fdcbf9529aaa4dd6f4b79d6 Makefile: Add. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ed3deaf --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: tlsproxy + + +tlsproxy: tlsproxy.c + gcc -Wall -Wextra -DDEBUG -o tlsproxy $^ + +clean: + rm -f tlsproxy + +.PHONY: all clean