1
0
mirror of https://github.com/michaellindman/discoupload.git synced 2024-12-18 10:02:30 +00:00
discoupload/Makefile

19 lines
168 B
Makefile
Raw Permalink 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