aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5f37491
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
1.PHONY: build install clean
2
3BINARY := codevec
4BUILD_DIR := bin
5
6build:
7 go build -o $(BUILD_DIR)/$(BINARY) ./cmd/codevec
8
9install: build
10 cp $(BUILD_DIR)/$(BINARY) ~/.local/bin/
11
12clean:
13 rm -rf $(BUILD_DIR)