NAME = fpm-helper

build: $(NAME)

$(NAME): main.go
	go build -o $(NAME)

test:
	go test -v

clean:
	rm -f $(NAME)

.PHONY: build test clean
