all: resize grayscale check

resize: resize.go
	CGO_ENABLED=0 GOOS=linux go build -o bootstrap $^
	zip resize.zip bootstrap
check: check.go
	CGO_ENABLED=0 GOOS=linux go build -o bootstrap $^
	zip check.zip bootstrap
grayscale: grayscale.go
	CGO_ENABLED=0 GOOS=linux go build -o bootstrap $^
	zip grayscale.zip bootstrap

.PHONY: all
