diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ab7a9c4 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +SRCS=$(wildcard *.go) + +rv: $(SRCS) + go build -o rv *.go + +test: rv + go test ./... + +testv: rv + go test -v ./... + +clean: + rm -f rv + +.PHONY: test testv clean