47 lines
882 B
Text
47 lines
882 B
Text
(executable
|
|
(public_name permap)
|
|
(modules app content db login permap register template user user_profile)
|
|
(libraries
|
|
bos
|
|
directories
|
|
dream
|
|
emile
|
|
omd
|
|
safepass
|
|
sqlite3_utils
|
|
lambdasoup)
|
|
(preprocess
|
|
(pps lwt_ppx)))
|
|
|
|
(rule
|
|
(targets template.ml)
|
|
(deps template.eml.html)
|
|
(action
|
|
(run dream_eml %{deps} --workspace %{workspace_root})))
|
|
|
|
(rule
|
|
(targets login.ml)
|
|
(deps login.eml.html)
|
|
(action
|
|
(run dream_eml %{deps} --workspace %{workspace_root})))
|
|
|
|
(rule
|
|
(targets register.ml)
|
|
(deps register.eml.html)
|
|
(action
|
|
(run dream_eml %{deps} --workspace %{workspace_root})))
|
|
|
|
(rule
|
|
(targets user_profile.ml)
|
|
(deps user_profile.eml.html)
|
|
(action
|
|
(run dream_eml %{deps} --workspace %{workspace_root})))
|
|
|
|
(rule
|
|
(target content.ml)
|
|
(deps
|
|
(source_tree content))
|
|
(action
|
|
(with-stdout-to
|
|
%{null}
|
|
(run ocaml-crunch -m plain content -o %{target}))))
|