aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 4ea7221..6d51ce6 100644
--- a/Makefile
+++ b/Makefile
@@ -42,20 +42,17 @@ MKDIR = mkdir -p
RMDIR = rmdir
RM = rm -rf
-# deps:
-
-build:
+deps:
go get github.com/BurntSushi/toml@latest
+
+build: deps
go build -o ${TARGET} ${SRCS}
clean:
go clean
${RM} ${TARGET}
-run:
- go run ${SRCS}
-
-.PHONY: build clean run deps
+.PHONY: build clean deps
# File prefixes info
# ------------------