diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -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 # ------------------ |