docs and Makefile for tcp-proxy

This commit is contained in:
Adam Ierymenko 2015-04-30 10:56:45 -07:00
commit 226e0f8722
2 changed files with 24 additions and 10 deletions

7
tcp-proxy/Makefile Normal file
View file

@ -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