BINARY_NAME=target/gohttpd

all:build

build:
	go build -o ${BINARY_NAME}
	cp config.json target/

clean:
	go clean
	rm -rf target