You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 regels
319 B

  1. # Build doc.go from template and snippets.
  2. SHELL=/bin/bash
  3. ../doc.go: build doc-snippets.go doc.template snipdoc.awk
  4. @tmp=$$(mktemp) && \
  5. awk -f snipdoc.awk doc-snippets.go doc.template > $$tmp && \
  6. chmod +w $@ && \
  7. mv $$tmp $@ && \
  8. chmod -w $@
  9. @echo "wrote $@"
  10. .PHONY: build
  11. build:
  12. go build doc-snippets.go