Makefile 150 B

12345678
  1. CXX=$(shell which clang++ g++ c++ 2>/dev/null | head -n 1)
  2. all:
  3. $(CXX) -O3 -fno-rtti -o tcp-proxy tcp-proxy.cpp
  4. clean:
  5. rm -f *.o tcp-proxy *.dSYM