OPTIONS = --std=c++17 -pthread
LIBFILES = ../../src/http_server.cpp ../../src/sockets.cpp -I../../src

main : main.cpp
	c++ -o main $(OPTIONS) main.cpp $(LIBFILES)
