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

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

OUT=cfws

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