diff options
| author | Jeff Carr <[email protected]> | 2024-11-30 12:17:38 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-30 12:17:38 -0600 |
| commit | dc356e9d0fc6b05f50b01d141206f679ecda2de9 (patch) | |
| tree | a875c8f8288f0a7292bac99176894a3b7fd07426 /Makefile | |
| parent | 10cf601ea03e92323d802391a437f335924e5107 (diff) | |
auto run protoc
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -1,12 +1,11 @@ VERSION = $(shell git describe --tags) BUILDTIME = $(shell date +%Y.%m.%d) -run: clean build - make -C testautogen/ all - make -C testSort/ +run: build -test: - ./autogenpb --dry-run --proto test.proto --lobase gitTag --upbase GitTag --sort "ByPath,Refname" +test: build + @# make -C testautogen/ all + cd testautogen; pwd; ../autogenpb --proto test.proto vet: @GO111MODULE=off go vet @@ -22,7 +21,6 @@ install: goimports: goimports -w *.go - make -C testSort/ goimports redomod: rm -f go.* @@ -35,6 +33,6 @@ reset: reset clean: + -rm -f go.* -rm -f autogenpb - make -C testautogen/ clean - make -C testSort/ clean + @#make -C testautogen/ clean |
