Makefile 513 B

12345678910111213141516171819202122232425262728293031
  1. # Tideland Common Go Library
  2. #
  3. # Copyright 2009-2011 Frank Mueller / Oldenburg / Germany.
  4. #
  5. # All rights reserved. Use of this source code is
  6. # governed by a BSD-style license that can be found
  7. # in the LICENSE file.
  8. include $(GOROOT)/src/Make.inc
  9. TARG=tideland-cgl.googlecode.com/hg
  10. GOFMT=gofmt -w -tabindent -tabwidth=8
  11. GOFILES=\
  12. cgl.go\
  13. cglsup.go\
  14. cglfsm.go\
  15. cglmon.go\
  16. cglsmr.go\
  17. cgltim.go\
  18. cglsml.go\
  19. include $(GOROOT)/src/Make.pkg
  20. format:
  21. ${GOFMT} ${GOFILES}
  22. ${GOFMT} cgl_test.go
  23. #
  24. # EOF
  25. #