mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00

Also: * Switch to gogo for filestore for consistency. * Use the "faster" codegen for fewer allocations. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
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
|