Files

21 lines
541 B
Makefile
Raw Permalink Normal View History

2025-03-07 17:26:55 -07:00
all: avro flatbuffers protobuf
2025-03-03 22:10:47 -07:00
avro: twt-avro/gen.go
twt-avro/gen.go: lextwt.avro
2025-03-26 18:49:42 -06:00
go tool avrogen -pkg twt_avro -encoders lextwt.avro > twt-avro/gen.go
2025-03-03 22:10:47 -07:00
2025-03-07 17:26:55 -07:00
flatbuffers: twt-fbs/lextwt
twt-fbs/lextwt: lextwt.fbs
2025-03-03 22:10:47 -07:00
flatc -o twt-fbs --go lextwt.fbs
2025-03-07 17:26:55 -07:00
protobuf: twt-pb/lextwt.pb.go
twt-pb/lextwt.pb.go: lextwt.proto
protoc --proto_path=. \
--plugin=bin/protoc-gen-go \
--go_opt=paths=source_relative \
--go_opt="Mlextwt.proto=go.sour.is/lextwt-encoding/twt-pb;twt_pb" \
--go_out=twt-pb \
lextwt.proto
.PHONY: avro protobuf flatbuffers