mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +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:
|
||||
go build
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f ${BINARY}
|
||||
|
||||
.PHONY: setup
|
||||
setup: jamstash
|
||||
@which reflex || (echo "Installing Reflex" && GO111MODULE=off go get -u github.com/cespare/reflex)
|
||||
|
@ -20,17 +15,18 @@ run:
|
|||
|
||||
.PHONY: test
|
||||
test:
|
||||
BEEGO_RUNMODE=test go test ./... -v
|
||||
go test ./... -v
|
||||
|
||||
.PHONY: 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
|
||||
cloc:
|
||||
# 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:
|
||||
wget -N https://github.com/tsquillario/Jamstash/archive/master.zip
|
||||
unzip -o master.zip
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue