From 40bb6caf20e48bbed11455a274d7359673beb5a2 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 8 Jan 2025 19:58:29 -0600 Subject: testfiles dir --- testfiles/Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 testfiles/Makefile (limited to 'testfiles/Makefile') 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 -- cgit v1.2.3