1
0
mirror of synced 2025-07-29 11:01:13 +03:00

added simplesvr sample.

This commit is contained in:
yhirose
2013-07-04 22:08:49 -04:00
parent 20fa4ba3b4
commit 292d1aeff7
3 changed files with 93 additions and 1 deletions

View File

@ -9,7 +9,7 @@ CC = g++
CFLAGS = -std=c++11 -g
endif
all: server client hello
all: server client hello simplesvr
server : server.cc ../httplib.h
$(CC) -o server $(CFLAGS) -I.. server.cc
@ -19,3 +19,6 @@ client : client.cc ../httplib.h
hello : hello.cc ../httplib.h
$(CC) -o hello $(CFLAGS) -I.. hello.cc
simplesvr : simplesvr.cc ../httplib.h
$(CC) -o simplesvr $(CFLAGS) -I.. simplesvr.cc