1
0
mirror of https://github.com/michaellindman/discoupload.git synced 2024-11-17 05:10:21 +00:00
discoupload/Makefile
Michael e6ab2a69c4 First commit
Signed-off-by: Michael <michael.lindman@gmail.com>
2020-08-02 04:13:39 +01:00

19 lines
168 B
Makefile

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