initial commit

This commit is contained in:
2022-03-05 00:30:50 -06:00
commit 8560c362a0
627 changed files with 178605 additions and 0 deletions

19
3rd_party/jsonrpcpp-1.1.1/Makefile vendored Normal file
View File

@@ -0,0 +1,19 @@
BIN = jsonrpctest
CXX = clang++
STRIP = strip
CXXFLAGS = -std=c++0x -Wall -O3 -Ilib -isystem lib/externals
OBJ = jsonrpctest.o lib/jsonrp.o
all: $(OBJ)
$(CXX) $(CXXFLAGS) -o $(BIN) $(OBJ) $(LDFLAGS)
$(STRIP) $(BIN)
%.o: %.cpp
$(CXX) $(CXXFLAGS) -c $< -o $@
clean:
rm -rf $(BIN) $(OBJ) *~