github.com/zyedidia/knit@v1.1.2-0.20230901152954-f7d4e39a0e24/test/multi_targets/test.toml (about)

     1  name = "Multiple targets being used from the same rule"
     2  
     3  [flags]
     4  
     5  knitfile = "Knitfile"
     6  ncpu = 1
     7  dryrun = true
     8  
     9  [[builds]]
    10  
    11  args = ["build-1", "build-2"]
    12  output = """\
    13  echo "1" > out1.txt; echo "2" > out2.txt
    14  echo out1.txt
    15  echo out2.txt
    16  """