Skip to content

Commit

Permalink
introduce Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
hidetatz committed Oct 16, 2022
1 parent e150ba8 commit 62ccd26
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 62ccd26

Please sign in to comment.