11 lines
187 B
Makefile
11 lines
187 B
Makefile
# General tools
|
|
|
|
SHELL=PATH='$(PATH)' /bin/sh
|
|
|
|
PROTOC = protoc --gogofaster_out=. --proto_path=.:$(GOPATH)/src:$(dir $@) $<
|
|
|
|
# enable second expansion
|
|
.SECONDEXPANSION:
|
|
|
|
include Rules.mk
|