From ef33066c3c66959eddb73ca31d74b7e07f8209cb Mon Sep 17 00:00:00 2001 From: Manfred Touron Date: Sun, 6 Nov 2016 15:31:50 +0100 Subject: [PATCH] Add 'make re' rule --- test/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/Makefile b/test/Makefile index aa0fea8..01e9488 100644 --- a/test/Makefile +++ b/test/Makefile @@ -2,3 +2,12 @@ build: mkdir -p output protoc -I. --gotemplate_out=output *.proto + + +.PHONY: re +re: clean build + + +.PHONY: clean +clean: + rm -rf output