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

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

.PHONY: clean
clean:
	rm -f server client