github.com/walf443/mgr@v0.0.0-20150203144449-6f7a3a548462/Makefile (about)

     1  test: mgr
     2  
     3  mgr: cli/*.go cli_test diff_test sqlparser_test
     4  	cd cli && go build -o ../mgr
     5  
     6  sqlparser_test:
     7  	cd sqlparser && make test
     8  
     9  diff_test: sqlparser_test
    10  	cd diff && make test
    11  
    12  cli_test: diff_test
    13  	cd cli && go test -v ./...
    14  
    15  get-deps:
    16  	go get github.com/k0kubun/pp
    17  	go get gopkg.in/yaml.v2
    18  
    19  .PHONY: test sqlparser_test diff_test get-deps