-
Notifications
You must be signed in to change notification settings - Fork 159
/
Makefile
87 lines (71 loc) · 4.05 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# This is necessary due to the use of two conflicting generator commands for capnproto
.NOTPARALLEL:
all: Colfer.go FlatBufferA.go msgp_gen.go structdef-gogo.pb.go structdef.pb.go structdefxdr_generated.go structdef-bebop.go structdef_msgpackgen.go structdef.pulsar.go
Colfer.go:
go run github.com/pascaldekloe/colfer/cmd/colf@latest go
mv goserbench/Colfer.go .
rmdir goserbench
FlatBufferA.go: flatbuffers-structdef.fbs
flatc --go --go-namespace goserbench flatbuffers-structdef.fbs
mv goserbench/FlatBufferA.go FlatBufferA.go
rmdir goserbench
msgp_gen.go: structdef.go
go run github.com/tinylib/msgp@latest -o msgp_gen.go -file structdef.go -io=false -tests=false
structdef_easyjson.go: structdef.go
go run github.com/mailru/easyjson/easyjson@latest -no_std_marshalers -all structdef.go
structdef-gogo.pb.go: structdef-gogo.proto
protoc --gogofaster_opt=paths=source_relative --gogofaster_out=. -I. -I${GOPATH}/src -I${GOPATH}/src/github.com/gogo/protobuf/protobuf structdef-gogo.proto
structdef.pb.go: structdef.proto
protoc --go_opt=paths=source_relative --go_out=. structdef.proto
structdef-pulsar.pulsar.go: structdef-pulsar.proto
protoc --go-pulsar_out=. --go-pulsar_opt=paths=source_relative --go-pulsar_opt=features=protoc+fast -I . structdef-pulsar.proto
#structdef.capnp2.go: structdef.capnp2
# go run zombiezen.com/go/capnproto2/capnpc-go@latest compile -I${GOPATH}/src -ogo structdef.capnp2
#structdef.capnp.go: structdef.capnp
# go run github.com/glycerine/go-capnproto/capnpc-go@latest compile -I${GOPATH}/src -ogo structdef.capnp
#gencode.schema.gen.go: gencode.schema
# go run github.com/andyleap/gencode@latest go -schema=gencode.schema -package=goserbench
#
#gencode-unsafe.schema.gen.go: gencode-unsafe.schema
# go run github.com/andyleap/gencode@latest go -schema=gencode-unsafe.schema -package=goserbench -unsafe
structdefxdr_generated.go: structdefxdr.go
go run github.com/calmh/xdr/cmd/genxdr@latest -o structdefxdr_generated.go structdefxdr.go
structdef-bebop-200sc.go:
go run github.com/200sc/bebop/main/bebopc-go@latest -i structdef-bebop-200sc.bop -o structdef-bebop-200sc.go --package goserbench --force-pointer-receivers
structdef-bebop-wellquite.go: structdef-bebop-wellquite.bop
go run wellquite.org/bebop/cmd/bebop -i ./structdef-bebop-wellquite.bop -o ./structdef-bebop-wellquite.go -p github.com/alecthomas/go_serialization_benchmarks/goserbench
structdef_msgpackgen.go: structdef.go
go run github.com/shamaton/msgpackgen@latest -input-file structdef.go -output-file structdef_msgpackgen.go -strict
.PHONY: clean
clean:
rm -f Colfer.go FlatBufferA.go msgp_gen.go structdef-gogo.pb.go structdef.pb.go structdefxdr_generated.go structdef_msgpackgen.go
.PHONY: install
install:
go install github.com/gogo/protobuf/protoc-gen-gogofaster@latest
go install github.com/gogo/protobuf/gogoproto@latest
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install github.com/tinylib/msgp@latest
go install github.com/andyleap/gencode@latest
go install github.com/mailru/easyjson@latest
go install go.dedis.ch/protobuf@latest
go install github.com/Sereal/Sereal/Go/sereal@latest
go install github.com/alecthomas/binary@latest
go install github.com/davecgh/go-xdr/xdr@latest
go install github.com/gogo/protobuf/proto@latest
go install github.com/google/flatbuffers/go@latest
go install github.com/tinylib/msgp/msgp@latest
go install github.com/ugorji/go/codec@latest
go install gopkg.in/mgo.v2/bson@latest
go install github.com/vmihailenco/msgpack/v5@latest
go install github.com/golang/protobuf/proto@latest
go install github.com/hprose/hprose-go/io@latest
go install github.com/pascaldekloe/colfer/cmd/colf@latest
go install github.com/calmh/xdr@latest
go install github.com/niubaoshu/gotiny@latest
go install github.com/200sc/bebop@latest
go install github.com/200sc/bebop/main/bebopc-go@latest
go install github.com/shamaton/msgpackgen@latest
go install github.com/cosmos/cosmos-proto/cmd/protoc-gen-go-pulsar@latest
go install github.com/mus-format/mus-go@latest
go install wellquite.org/bebop@latest
go install wellquite.org/bebop/cmd/bebop@latest