Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

17 rader
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