diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-30 10:56:45 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-30 10:56:45 -0700 |
commit | 226e0f8722179b3a08eb14ad34fe03d5b0720888 (patch) | |
tree | b1984d1269c5d9a6b252115d79ca368632b876c6 /tcp-proxy/Makefile | |
parent | 288d73a4adc5452ffecb5675c6c52ce67aa00159 (diff) | |
download | infinitytier-226e0f8722179b3a08eb14ad34fe03d5b0720888.tar.gz infinitytier-226e0f8722179b3a08eb14ad34fe03d5b0720888.zip |
docs and Makefile for tcp-proxy
Diffstat (limited to 'tcp-proxy/Makefile')
-rw-r--r-- | tcp-proxy/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
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 |