| 1234567891011121314151617181920212223242526272829303132 | VERSION = 1.2.1RELEASE_PKG = ./cmd/depthINSTALL_PKG = $(RELEASE_PKG)# Remote includes require 'mmake' # github.com/tj/mmakeinclude github.com/KyleBanks/make/go/installinclude github.com/KyleBanks/make/go/sanityinclude github.com/KyleBanks/make/go/releaseinclude github.com/KyleBanks/make/go/benchinclude github.com/KyleBanks/make/git/precommit# Runs a number of depth commands as examples of what's possible.example: | install	depth github.com/KyleBanks/depth/cmd/depth strings ./	depth -internal strings 	depth -json github.com/KyleBanks/depth/cmd/depth	depth -test github.com/KyleBanks/depth/cmd/depth	depth -test -internal strings	depth -test -internal -max 3 strings	depth .	depth ./cmd/depth.PHONY: example
 |