aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4560bb8..dbcdd1e 100644
--- a/Makefile
+++ b/Makefile
@@ -18,11 +18,12 @@
.DEFAULT_GOAL := run
SHELL := /bin/sh
+SRC := *.go
-run:
- @go run *.go
+run: ${SRC}
+ @go run ${SRC}
-all:
+josh: ${SRC}
@go build
clean: