mirror of
https://github.com/NAStools/zerotierone.git
synced 2024-11-09 07:00:44 -08:00
8 lines
150 B
Makefile
8 lines
150 B
Makefile
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
|