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

     1  return b{
     2  $ out1.txt out2.txt:
     3      echo "1" > out1.txt; echo "2" > out2.txt
     4  
     5  $ build-1:V: out1.txt
     6      echo $input
     7  $ build-2:V: out2.txt
     8      echo $input
     9  
    10  $ clean:VB:
    11      rm *.txt
    12  }