this repo has no description
1(executable 2 (name gen_type_bindings) 3 (modules gen_type_bindings) 4 (libraries ctypes.stubs c_type_description)) 5 6(rule 7 (target gen_type_bindings.c) 8 (action 9 (with-stdout-to 10 %{target} 11 (run ./gen_type_bindings.exe)))) 12 13(rule 14 (targets gen_type_bindings_from_c.exe) 15 (deps gen_type_bindings.c) 16 (action 17 (bash 18 "%{cc} %{deps} -I `dirname %{lib:ctypes:ctypes_cstubs_internals.h}` -I %{ocaml_where} -o %{targets}"))) 19 20(executable 21 (name gen_function_bindings) 22 (modules gen_function_bindings) 23 (libraries ctypes.stubs c_function_description))