FLAGS = -Wall -O1 -std=c99 -D _POSIX_C_SOURCE=200112L all: webserv webserv: webserv.c gcc webserv.c ${FLAGS} -o webserv clean: rm -f webserv