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.
9 lines
310 B
9 lines
310 B
CXX=$(shell which clang++ g++ c++ 2>/dev/null | head -n 1) |
|
|
|
INCLUDES?=-I../ext/prometheus-cpp-lite-1.0/core/include -I../ext/prometheus-cpp-lite-1.0/simpleapi/include |
|
|
|
all: |
|
$(CXX) -O3 -fno-rtti $(INCLUDES) -std=c++11 -frtti -o tcp-proxy tcp-proxy.cpp ../node/Metrics.cpp |
|
|
|
clean: |
|
rm -f *.o tcp-proxy *.dSYM
|
|
|