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

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

OUT=cfws

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