mirror of
https://github.com/michaellindman/discoupload.git
synced 2024-11-17 05:10:21 +00:00
19 lines
168 B
Makefile
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
|