mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Embed our own private copy of websocketpp.
This commit is contained in:
17
src/cpp/websocketpp/examples/concurrent_server/Makefile
Normal file
17
src/cpp/websocketpp/examples/concurrent_server/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user