CC := gcc
CFLAGS += -O3 -march=native -g -Wall

all: client

clean:
	$(RM) client

.PHONY: all
