github.com/insionng/yougam@v0.0.0-20170714101924-2bc18d833463/libraries/qiuyesuifeng/goyacc/Makefile (about) 1 # build rules. 2 GO=go 3 4 .PHONY: all build install clean 5 6 all: build install 7 8 build: 9 $(GO) build 10 11 install: 12 $(GO) install ./... 13 14 clean: 15 $(GO) clean -i ./... 16 rm -f *~ y.output y.go tmp.go goyacc 17 18 test: 19 $(GO) test -cover ./...