Files
rippled/src/websocketpp_02/examples/chat_client/Makefile
2015-01-20 09:34:54 -08:00

18 lines
334 B
Makefile

BOOST_LIBS=boost_system boost_thread boost_regex boost_random
include ../common.mk
LDFLAGS := $(LDFLAGS) -lpthread
chat_client: chat_client.o chat_client_handler.o
$(CXX) $(CFLAGS) $^ -o $@ $(LDFLAGS)
%.o: %.cpp
$(CXX) -c $(CFLAGS) -o $@ $^
# cleanup by removing generated files
#
.PHONY: clean
clean:
rm -f *.o chat_client