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

     1  files := f1.o f2.o f3.o
     2  
     3  return b{
     4  $ prog: $files
     5      ld -o $output $input
     6  
     7  $ %.o: %.c
     8      cc -Wall $match.c
     9  
    10  $ f2.o: f2.c
    11      cc f2.c
    12  }