You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
toolkit/Makefile

15 lines
226 B

all: bindir
go build -o ./bin ./cmd/...
httpcat: bindir
go build -o ./bin ./cmd/httpcat/...
mdfmt: bindir
go build -o ./bin ./cmd/md-fmt/...
otelq: bindir
go build -o ./bin ./cmd/otelq/...
bindir:
mkdir ./bin; exit 0