Skip to content
Snippets Groups Projects
Select Git revision
  • 79150418e5985b15a955c30a49d3d2eb3dfce538
  • release default protected
  • more-testing
  • attempt-vax90b1
  • attempt-1
  • conversion protected
  • linux
  • v0.9.1 protected
  • v0.9.0 protected
9 results

Makefile

Blame
  • Makefile 266 B
    .PHONY: all
    all:
    	go generate ./...
    	go install ./...
    
    dupl:
    	find . -name '*.go' \
    		| grep -Fv .sql.go \
    		| go tool github.com/mibk/dupl -html -t 50 -files \
    		> dupl.html
    	xdg-open dupl.html
    
    docs:
    	go tool golang.org/x/pkgsite/cmd/pkgsite -open
    # vim:ft=make
    #