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 32 33 34 35 36 37 38 39
|
(library
(name ben)
(public_name ben)
(foreign_stubs
(language c)
(names dpkg_stubs))
(libraries
dynlink
unix
re
parmap
tyxml
postgresql
ocamlgraph
fileutils
extlib)
(modules_without_implementation types template))
(ocamllex lexer)
(menhir
(modules parser))
(rule
(target version.ml)
(deps version.mlp ../debian/changelog)
(action
(with-stdout-to
%{target}
(chdir
%{project_root}
(run lib/fill_version.sh lib/version.mlp)))))
(rule
(target ocaml_config.ml)
(action
(with-stdout-to
%{target}
(run ./fill_ocaml_config.sh))))
|