1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
(rule
(targets html_sigs_reflected.ml)
(deps reflect/reflect.exe ../lib/html_sigs.mli)
(action (run %{deps} %{targets})))
(rule
(targets svg_sigs_reflected.ml)
(deps reflect/reflect.exe ../lib/svg_sigs.mli)
(action (run %{deps} %{targets})))
(rule
(targets html_types_reflected.ml)
(deps reflect/reflect.exe ../lib/html_types.mli)
(action (run %{deps} %{targets})))
(rule
(targets svg_types_reflected.ml)
(deps reflect/reflect.exe ../lib/svg_types.mli)
(action (run %{deps} %{targets})))
(library
(name tyxml_syntax)
(public_name tyxml-syntax)
(libraries uutf re.str
ppxlib
)
(preprocess (pps ppxlib.metaquot))
(modules_without_implementation sigs_reflected)
(flags (:standard
-safe-string
-open Ppxlib
-w "-9"
))
)
|