diff options
Diffstat (limited to 'vendor/github.com/felixge/httpsnoop/Makefile')
-rw-r--r-- | vendor/github.com/felixge/httpsnoop/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/felixge/httpsnoop/Makefile b/vendor/github.com/felixge/httpsnoop/Makefile new file mode 100644 index 000000000..2d84889ae --- /dev/null +++ b/vendor/github.com/felixge/httpsnoop/Makefile @@ -0,0 +1,10 @@ +.PHONY: ci generate clean + +ci: clean generate + go test -v ./... + +generate: + go generate . + +clean: + rm -rf *_generated*.go |