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

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)