diff options
| author | Jeff Carr <[email protected]> | 2025-01-08 19:58:29 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-08 19:58:29 -0600 |
| commit | 40bb6caf20e48bbed11455a274d7359673beb5a2 (patch) | |
| tree | 58c5960abc291dea5a3d1cb135a37aab886e093d /testfiles/Makefile | |
| parent | 99c036733bb581fa7bf70562dd25ae55e35461c7 (diff) | |
testfiles dir
Diffstat (limited to 'testfiles/Makefile')
| -rw-r--r-- | testfiles/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testfiles/Makefile b/testfiles/Makefile new file mode 100644 index 0000000..bc4405b --- /dev/null +++ b/testfiles/Makefile @@ -0,0 +1,23 @@ +VERSION = $(shell git describe --tags) +BUILDTIME = $(shell date +%Y.%m.%d_%H%M) + +full: clean goimports auto vet build + ./testfiles + +vet: + @GO111MODULE=off go vet + @echo this go binary package should build okay + +build: + GO111MODULE=off go build + +auto: + ../autogenpb --proto auto.proto --package main + +goimports: + goimports -w *.go + +clean: + -rm -f go.* + -rm -f *.pb.go + -rm -f testfiles |
