.PHONY: build clean

build:
	go build -o screencap .

clean:
	rm -f screencap
