diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..32e6e67 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +BINARY_NAME=tesla-firmware-decrypt + +build: + go build -o "build/$(BINARY_NAME)" "./cmd/$(BINARY_NAME)/" + +install: + cp "build/$(BINARY_NAME)" "$$GOPATH/bin/$(BINARY_NAME)" \ No newline at end of file