upm-universalpackagemanager/Makefile
2025-01-21 16:59:43 -05:00

16 lines
159 B
Makefile

.PHONY: build clean install
build:
go build -o upm
clean:
rm -f upm
install: build
sudo mv upm /usr/local/bin/
test:
go test ./...
deps:
go mod tidy