1cflags{
2 '-std=c99',
3 '-pedantic',
4 '-Wall',
5}
6
7lib('libxxhash.a', {'xxhash.c'})
8
9exe('xxhsum', [[
10 cli/(
11 xxhsum.c xsum_os_specific.c xsum_arch.c
12 xsum_output.c xsum_sanity_check.c
13 xsum_bench.c
14 )
15 libxxhash.a
16]])
17
18file('bin/xxhsum', '755', '$outdir/xxhsum')
19man{'cli/xxhsum.1'}
20
21fetch 'git'