summaryrefslogtreecommitdiff
path: root/src/shell/TARGETS
blob: f4b2dbf62348a8ad6074626565a7e3d5a1852f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ "out":
  { "type": ["@", "rules", "shell", "cmds"]
  , "outs": ["out.txt"]
  , "cmds": ["./hello > out.txt"]
  , "deps": [["hello", ""]]
  }
, "":
  { "type": ["@", "rules", "shell", "cmds"]
  , "outs": ["wc.txt", "tr.txt"]
  , "cmds": ["wc out.txt > wc.txt", "cat out.txt | tr a-z A-Z > tr.txt"]
  , "deps": ["out"]
  }
}