undo stuff from other branch

This commit is contained in:
Adam Ierymenko 2024-06-24 18:54:05 -04:00
parent f4edb092b7
commit e2840b0eb8
7 changed files with 0 additions and 684 deletions

9
tcp-proxy/Makefile Normal file
View file

@ -0,0 +1,9 @@
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 -pthread -frtti -o tcp-proxy tcp-proxy.cpp ../node/Metrics.cpp
clean:
rm -f *.o tcp-proxy *.dSYM