From 22e051662cadb657fab8e98561cdcf13b6b71d8b Mon Sep 17 00:00:00 2001 From: ayyansea Date: Fri, 15 Nov 2024 19:47:46 +0300 Subject: initial commit --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3