.PHONY: all build clean test run

all: build

build:
	go build -ldflags="-s -w" -o dynagate .

clean:
	rm -f dynagate

test:
	go test -v ./...

run: build
	./dynagate -port 8080 -csv models.csv
