GofileScrapper/Makefile

12 lines
152 B
Makefile
Raw Permalink Normal View History

2024-03-19 16:20:55 +00:00
.PHONY all:
all:
go build -o build/scrapper && chmod +x build/scrapper
.PHONY clean:
clean:
rm -rfv build/*
2024-03-20 09:10:20 +00:00
.PHONY lint:
lint:
golangci-lint run .