blob: 3943b7b97d2ede2a864ae9a01da638254aaed96c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
(library
(name nock_lib)
(modules noun nock bitstream serial)
(libraries zarith))
(executable
(name test_nock)
(modules test_nock)
(libraries nock_lib zarith))
(executable
(name test_serial)
(modules test_serial)
(libraries nock_lib zarith))
(executable
(name bench_nock)
(modules bench_nock)
(libraries nock_lib zarith unix))
|