2ccfab3e07
* added IPAddr, IPPrefix and stream based cbor decoder * Update README with cbor decoder tool info * Update README in cbor with comparison data
11 lines
197 B
Makefile
11 lines
197 B
Makefile
all: genLogJSON genLogCBOR
|
|
|
|
genLogJSON: genLog.go
|
|
go build -o genLogJSON genLog.go
|
|
|
|
genLogCBOR: genLog.go
|
|
go build -tags binary_log -o genLogCBOR genLog.go
|
|
|
|
clean:
|
|
rm -f genLogJSON genLogCBOR
|