You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
150 B
8 lines
150 B
|
3 years ago
|
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
|