Add 'make re' rule

This commit is contained in:
Manfred Touron 2016-11-06 15:31:50 +01:00
parent e2abefe4a0
commit ef33066c3c
No known key found for this signature in database
GPG Key ID: 9CCF47DF1FD978A1

View File

@ -2,3 +2,12 @@
build: build:
mkdir -p output mkdir -p output
protoc -I. --gotemplate_out=output *.proto protoc -I. --gotemplate_out=output *.proto
.PHONY: re
re: clean build
.PHONY: clean
clean:
rm -rf output