go-watch-webp/Makefile

7 lines
124 B
Makefile
Raw Permalink Normal View History

2019-05-15 10:09:36 +00:00
.PHONY: clean build
build:
GOOS=linux go build -o convert-webp -ldflags "-s -w" .
clean:
rm -rf convert-webp && go clean