upm-universalpackagemanager/Makefile

16 lines
159 B
Makefile
Raw Permalink Normal View History

2025-01-21 21:59:43 +00:00
.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