Makefile 189 B

1234567891011121314
  1. install:
  2. go install
  3. fmt:
  4. gofmt -w *.go */*.go
  5. colcheck *.go */*.go
  6. tags:
  7. find ./ -name '*.go' -print0 | xargs -0 gotags > TAGS
  8. push:
  9. git push origin master
  10. git push github master