mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Clean up Makefile
This commit is contained in:
parent
a706429a4a
commit
0388d67817
1 changed files with 5 additions and 9 deletions
14
Makefile
14
Makefile
|
@ -1,12 +1,7 @@
|
||||||
BINARY=sonic-server
|
.PHONY: build
|
||||||
|
|
||||||
build:
|
build:
|
||||||
go build
|
go build
|
||||||
|
|
||||||
.PHONY: clean
|
|
||||||
clean:
|
|
||||||
rm -f ${BINARY}
|
|
||||||
|
|
||||||
.PHONY: setup
|
.PHONY: setup
|
||||||
setup: jamstash
|
setup: jamstash
|
||||||
@which reflex || (echo "Installing Reflex" && GO111MODULE=off go get -u github.com/cespare/reflex)
|
@which reflex || (echo "Installing Reflex" && GO111MODULE=off go get -u github.com/cespare/reflex)
|
||||||
|
@ -20,17 +15,18 @@ run:
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
test:
|
test:
|
||||||
BEEGO_RUNMODE=test go test ./... -v
|
go test ./... -v
|
||||||
|
|
||||||
.PHONY: convey
|
.PHONY: convey
|
||||||
convey:
|
convey:
|
||||||
NOLOG=1 goconvey --port 9090 -excludedDirs static,devDb,wiki,bin,tests
|
NOLOG=1 goconvey --port 9090 -excludedDirs static,devDb,wiki,bin,tests,Jamstash-master
|
||||||
|
|
||||||
.PHONY: cloc
|
.PHONY: cloc
|
||||||
cloc:
|
cloc:
|
||||||
# cloc can be installed using brew
|
# cloc can be installed using brew
|
||||||
cloc --exclude-dir=devDb,.idea,.vscode,wiki,static --exclude-ext=iml,xml .
|
cloc --exclude-dir=devDb,.idea,.vscode,wiki,static,Jamstash-master --exclude-ext=iml,xml .
|
||||||
|
|
||||||
|
.PHONY: jamstash
|
||||||
jamstash:
|
jamstash:
|
||||||
wget -N https://github.com/tsquillario/Jamstash/archive/master.zip
|
wget -N https://github.com/tsquillario/Jamstash/archive/master.zip
|
||||||
unzip -o master.zip
|
unzip -o master.zip
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue