aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d358933..4fbce3e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,10 @@
+MODULE := github.com/gemrest/capybara
+
fmt:
- go fmt github.com/gemrest/capybara...
+ go fmt $(MODULE)...
run: fmt
- go run github.com/gemrest/capybara
+ go run $(MODULE)
build: fmt
go build