mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-22 20:15:51 +00:00
18 lines
350 B
Makefile
18 lines
350 B
Makefile
BOOST_LIBS=boost_system boost_date_time boost_program_options boost_thread boost_regex boost_random
|
|
|
|
include ../common.mk
|
|
|
|
LDFLAGS := $(LDFLAGS) -lpthread
|
|
|
|
echo_client: echo_client.o
|
|
$(CXX) $(CFLAGS) $^ -o $@ $(LDFLAGS)
|
|
|
|
%.o: %.cpp
|
|
$(CXX) -c $(CFLAGS) -o $@ $^
|
|
|
|
# cleanup by removing generated files
|
|
#
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.o echo_client
|