.PHONY: clean build build: GOOS=linux go build -o convert-webp -ldflags "-s -w" . clean: rm -rf convert-webp && go clean