GofileScrapper/Makefile

12 lines
152 B
Makefile

.PHONY all:
all:
go build -o build/scrapper && chmod +x build/scrapper
.PHONY clean:
clean:
rm -rfv build/*
.PHONY lint:
lint:
golangci-lint run .