1
0
mirror of synced 2025-07-27 23:41:48 +03:00

Added client.

This commit is contained in:
yhirose
2012-10-02 20:39:13 -04:00
parent ced9c38339
commit 762e7938fd
9 changed files with 451 additions and 143 deletions

View File

@ -9,10 +9,13 @@ CC = g++
CFLAGS = -std=c++11 -g
endif
all: sample hello
all: server client hello
sample : sample.cc ../httplib.h
$(CC) -o sample $(CFLAGS) -I.. sample.cc
server : server.cc ../httplib.h
$(CC) -o server $(CFLAGS) -I.. server.cc
client : client.cc ../httplib.h
$(CC) -o client $(CFLAGS) -I.. client.cc
hello : hello.cc ../httplib.h
$(CC) -o hello $(CFLAGS) -I.. hello.cc