about summary refs log tree commit diff stats
path: root/Makefile
blob: 0e899bbf2365ee9a5df56e3ba10b86a9e245fc80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
flags := -std=c++20 -Wall -Wextra -Wpedantic -O3

server_bin: server/src/main.cpp
	g++ $^ ${flags} -o $@ 
client_bin:
	g++ $^ ${flags} -o $@

.PHONY: clean
clean:
	rm -f server_bin client_bin