From 236a23e44f4d61d52fdcbf9529aaa4dd6f4b79d6 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 27 Feb 2011 02:54:35 +0100 Subject: [PATCH] Makefile: Add. --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile 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 -- 2.43.2