1cflags{
2 '-std=c99',
3 '-pedantic',
4 '-Wall',
5 '-Wextra',
6}
7
8exe('pdpmake', {
9 'check.c',
10 'input.c',
11 'macro.c',
12 'main.c',
13 'make.c',
14 'modtime.c',
15 'rules.c',
16 'target.c',
17 'utils.c',
18})
19
20file('bin/pdpmake', '755', '$outdir/pdpmake')
21
22man{'pdpmake.1'}
23
24fetch 'git'