diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..51a8340 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +github-keys: github-keys.go + go build + +run: + go run ./github-keys.go + +clean: + rm -f ./github-keys + +.PHONY: run clean