summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6451759898bcdc54696cf12f7b5c69359cc67139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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