• Top
  • New

Show HN: "mk" – one-liner make rules on the command-line

by alecthomas on 12/7/2024, 10:12:25 PM with 0 comments
https://github.com/alecthomas/mk

Very handy in conjunction with Just to give you make-like functionality, eg.

  build-protos:
    @mk protos/myproto.pb.go protos/myproto.tsx : protos/myproto.proto -- protoc --gen_go=protos --gen_tsx=protos protos/myproto.proto

PS. My one and only Rust project, so expect some odd code.