diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6451759 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +BINARY_DIR=./cmd/uptfs + +.PHONY: all +all: build + +.PHONY: build +build: + @echo "Building Go uptfs..." + go build $(BINARY_DIR) + +.PHONY: clean +clean: + @echo "Cleaning build artifacts..." + rm -f ./uptfs + +.PHONY: run +run: + ./uptfs
\ No newline at end of file |
