mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
12 lines
216 B
Makefile
12 lines
216 B
Makefile
SHELL := /bin/bash
|
|
|
|
options:
|
|
echo "you can clean | test | build | run"
|
|
clean:
|
|
rm -f bin/contentserver
|
|
build:
|
|
make clean
|
|
go build -o bin/contentserver
|
|
test:
|
|
go test -v github.com/foomo/contentserver/server/repo
|