about summary refs log tree commit diff stats
path: root/Makefile
blob: 9c83ae38dbab036b922e333f29b7a201080c6618 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CXX = g++
CXXFLAGS := -std=c++23 -Wall -Wextra -Wpedantic -O3 -Isrc/common

server: src/server/main.cpp
	${CXX} ${CXXFLAGS} $^ -o $@ 
client:
	${CXX} ${CXXFLAGS} $^ -o $@

.PHONY: clean
clean:
	rm -f server client