diff options
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 |
