summaryrefslogtreecommitdiff
path: root/format-json/TARGETS.tasks
blob: 2eb54fb81a613dd622e025ad29cb68da05785b32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ "ls":
  { "type": "generic"
  , "outs": ["json-files"]
  , "cmds":
    [ "find . '(' -name 'TARGETS*' -o -name RULES -o -name EXPRESSIONS ')' -type f > json-files"
    ]
  , "deps": [["TREE", null, "."]]
  }
, "targets":
  { "type": "generic"
  , "outs": ["TARGETS"]
  , "cmds": ["python3 generate-fmt.py"]
  , "deps": ["ls", ["@", "format", "", "generate-fmt.py"]]
  }
, "": {"type": "export", "target": "targets"}
}