Files
xahaud/examples/echo_server/Makefile
Vinnie Falco 128e6a4125 Squashed 'src/websocket/' content from commit b439cd1
git-subtree-dir: src/websocket
git-subtree-split: b439cd1ee99f319eb1464f7b44923ce96245735d
2013-09-11 09:58:50 -07:00

18 lines
337 B
Makefile

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