File: dune

package info (click to toggle)
ocaml-num 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 556 kB
  • sloc: ml: 4,454; ansic: 1,415; makefile: 202; sh: 13
file content (22 lines) | stat: -rw-r--r-- 401 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
22
(rule
 (alias runtest)
 (action (run ./driver.exe)))

(rule
 (alias runtest)
 (action (run ./driver.bc)))

(library
  (name test_lib)
  (modules test test_nats test_big_ints test_ratios test_nums test_io end_test)
  (libraries num)
  (flags ))

(executable
  (name driver)
  (modules driver)
  (flags -linkall)
  (modes (byte exe))
  (libraries test_lib))

(rule (with-stdout-to driver.ml (echo "")))