]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
Makefile: Add.
authorSimon Ruderich <simon@ruderich.org>
Sun, 27 Feb 2011 01:54:35 +0000 (02:54 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 27 Feb 2011 01:54:35 +0000 (02:54 +0100)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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