22 lines
374 B
Text
22 lines
374 B
Text
(executable
|
|
(public_name web_template)
|
|
(name main)
|
|
(libraries drame htmlit))
|
|
|
|
(rule
|
|
(target assets.ml)
|
|
(deps
|
|
(source_tree assets))
|
|
(action
|
|
(with-stdout-to
|
|
%{null}
|
|
(run ocaml-crunch -m plain assets -o %{target}))))
|
|
|
|
(rule
|
|
(target data.ml)
|
|
(deps
|
|
(source_tree data))
|
|
(action
|
|
(with-stdout-to
|
|
%{null}
|
|
(run ocaml-crunch -m plain data -o %{target}))))
|