File: dune

package info (click to toggle)
ocaml-eqaf 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 364 kB
  • sloc: ml: 1,562; ansic: 103; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 417 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(rule
 (targets clock.ml clock_stubs.c clock.sexp)
 (deps
  (:select select/select.ml)
  clock_linux.ml
  clock_linux_stubs.c
  clock_windows.ml
  clock_windows_stubs.c
  clock_mach.ml
  clock_mach_stubs.c)
 (action
  (run %{ocaml} %{select} --system %{ocaml-config:system} -o clock)))

(library
 (name clock)
 (modules clock)
 (foreign_stubs
  (language c)
  (names clock_stubs)
  (flags
   (:include clock.sexp))))