initial commit
This commit is contained in:
19
3rd_party/jsonrpcpp-1.1.1/Makefile
vendored
Normal file
19
3rd_party/jsonrpcpp-1.1.1/Makefile
vendored
Normal 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) *~
|
||||
|
||||
Reference in New Issue
Block a user