Embed our own private copy of websocketpp.

This commit is contained in:
Arthur Britto
2012-12-12 19:07:03 -08:00
parent 7ec2e5cc3e
commit be5087a9de
238 changed files with 48634 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
BOOST_LIBS=boost_system boost_date_time boost_program_options boost_thread boost_regex
include ../common.mk
LDFLAGS := $(LDFLAGS) -lpthread
concurrent_server: concurrent_server.o
$(CXX) $(CFLAGS) $^ -o $@ $(LDFLAGS)
%.o: %.cpp
$(CXX) -c $(CFLAGS) -o $@ $^
# cleanup by removing generated files
#
.PHONY: clean
clean:
rm -f *.o concurrent_server