aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2022-04-04 16:50:15 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2022-04-04 16:50:15 +0200
commitae894ae82eb3ab90fbc595ad7263126314a44593 (patch)
tree2005fc36ce4906f7eaa8c315e15976bf89492df5 /Makefile
parentTest (diff)
downloadgo2work-ae894ae82eb3ab90fbc595ad7263126314a44593.tar.gz
go2work-ae894ae82eb3ab90fbc595ad7263126314a44593.tar.bz2
go2work-ae894ae82eb3ab90fbc595ad7263126314a44593.tar.xz
go2work-ae894ae82eb3ab90fbc595ad7263126314a44593.tar.zst
go2work-ae894ae82eb3ab90fbc595ad7263126314a44593.zip
Makefile test
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
# ------------------