summaryrefslogtreecommitdiff
path: root/Makefile
blob: f9a663686022acf2c400a6fc3ae189efcce6e163 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS=-pedantic -Wall --std=c++11

SRC=src/main.cpp \
    src/ClientConnection.cpp \
    src/ServerConnection.cpp \
    src/HttpRequest.cpp \
    src/HttpResponse.cpp

OUT=cfws

$(OUT): $(SRC)
	$(CXX) $(CFLAGS) -o $(OUT) $(SRC)