...

Text file src/github.com/rs/zerolog/internal/cbor/examples/makefile

Documentation: github.com/rs/zerolog/internal/cbor/examples

     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