blob: ee236ea163a10653bde2e59e3aae1c70ee61de1c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | (library
 (name layouts)
 (public_name ogit.layouts)
 (modules header topnav))
; Rule to preprocess header.eml.html
(rule
 (targets header.ml)
 (deps header.eml.html)
 (action (run dream_eml %{deps} --workspace %{workspace_root})))
; Rule to preprocess topnav.eml.html
(rule
 (targets topnav.ml)
 (deps topnav.eml.html)
 (action (run dream_eml %{deps} --workspace %{workspace_root})))
 |