1
0
mirror of https://github.com/michaellindman/discoupload.git synced 2024-12-18 19:04:29 +00:00
discoupload/Makefile

19 lines
168 B
Makefile
Raw Normal View History

APP=discoupload
run: build
./$(APP)
build:
go build
debs:
go get ./...
update-debs:
go get -u ./...
clean:
go clean
.PHONY: run build debs update-debs clean