mirror of
https://github.com/oasislinux/oasis.git
synced 2026-05-08 21:34:54 +02:00
23 lines
255 B
Lua
23 lines
255 B
Lua
cflags{
|
|
'-std=c99',
|
|
'-Wpedantic', '-Wall',
|
|
}
|
|
|
|
exe('pdpmake', {
|
|
'check.c',
|
|
'input.c',
|
|
'macro.c',
|
|
'main.c',
|
|
'make.c',
|
|
'modtime.c',
|
|
'rules.c',
|
|
'target.c',
|
|
'utils.c',
|
|
})
|
|
|
|
file('bin/pdpmake', '755', '$outdir/pdpmake')
|
|
|
|
man{'pdpmake.1'}
|
|
|
|
fetch 'git'
|