forked from pressly/goico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
37 lines (30 loc) · 861 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.PHONY: all
all:
@echo "*******************************"
@echo "** Pressly go.image/ico build tool **"
@echo "*******************************"
@echo "make <cmd>"
@echo ""
@echo "commands:"
@echo " test - standard go test"
@echo " convey - TDD runner"
@echo " build - build the dist binary"
@echo " clean - clean the dist build"
@echo ""
@echo " tools - go get's a bunch of tools for dev"
@echo " deps - pull and setup dependencies"
@echo " update_deps - update deps lock file"
test:
@go test -v ./...
convey:
goconvey
build_pkgs:
go build ./...
tools:
go get github.com/robfig/glock
go get github.com/pkieltyka/fresh
go get github.com/smartystreets/goconvey
deps:
@glock sync -n github.com/pressly/go.image < Glockfile
update_deps:
@glock save -n github.com/pressly/go.image > Glockfile