diff options
| author | Grant Limberg <glimberg@gmail.com> | 2015-04-30 19:19:45 -0700 |
|---|---|---|
| committer | Grant Limberg <glimberg@gmail.com> | 2015-04-30 19:19:45 -0700 |
| commit | 52df59c55299419feb16a5daeed01389f4fafc73 (patch) | |
| tree | 5d081b9a9c14566c07cea8b661bf74acee0be312 /tcp-proxy/Makefile | |
| parent | 9464504e4a68755296b96fcc3df4afe1ce79b681 (diff) | |
| parent | d3820049b82f756ba6c9c3390d4060ee1ad49925 (diff) | |
| download | infinitytier-52df59c55299419feb16a5daeed01389f4fafc73.tar.gz infinitytier-52df59c55299419feb16a5daeed01389f4fafc73.zip | |
Merge branch 'adamierymenko-dev' into android-jni
Conflicts:
.gitignore
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 |
