1all: genLogJSON genLogCBOR 2 3genLogJSON: genLog.go 4 go build -o genLogJSON genLog.go 5 6genLogCBOR: genLog.go 7 go build -tags binary_log -o genLogCBOR genLog.go 8 9clean: 10 rm -f genLogJSON genLogCBOR
View as plain text