gadgetobrr/examples/dune

22 lines
388 B
Text
Raw Normal View History

2024-04-11 15:46:46 +02:00
(executable
2024-04-16 06:58:24 +02:00
(name runweb)
(modules runweb content)
(libraries tiny_httpd))
(executable
(name script)
(modules script)
2024-04-16 04:03:20 +02:00
(libraries js_of_ocaml brr gadgetobrr)
2024-04-11 15:46:46 +02:00
(modes js))
2024-04-16 06:58:24 +02:00
(rule
(target content.ml)
(deps
(file content/index.html)
(file content/style.css)
(file content/script.js))
(action
(with-stdout-to
%{null}
(run ocaml-crunch -m plain content -o %{target}))))