From 226e0f8722179b3a08eb14ad34fe03d5b0720888 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 30 Apr 2015 10:56:45 -0700 Subject: docs and Makefile for tcp-proxy --- tcp-proxy/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tcp-proxy/Makefile (limited to 'tcp-proxy/Makefile') diff --git a/tcp-proxy/Makefile b/tcp-proxy/Makefile new file mode 100644 index 00000000..af4e71e3 --- /dev/null +++ b/tcp-proxy/Makefile @@ -0,0 +1,7 @@ +CXX=$(shell which clang++ g++ c++ 2>/dev/null | head -n 1) + +all: + $(CXX) -O3 -fno-rtti -o tcp-proxy tcp-proxy.cpp + +clean: + rm -f *.o tcp-proxy *.dSYM -- cgit v1.2.3