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

     1  return b{
     2  $ hello: hello.c
     3      cc -o $output $input
     4  $ touch:VB:
     5      touch hello.c
     6  $ modify:VB:
     7      sleep 0.01; echo "// test" >> hello.c
     8  $ reset:VB:
     9      echo "int main() {return 0;}" > hello.c
    10  $ clean:VB:
    11      rm -f hello
    12  }