mirror of
https://github.com/oasislinux/oasis.git
synced 2026-05-12 21:34:47 +02:00
18 lines
243 B
Lua
18 lines
243 B
Lua
cflags{
|
|
'-std=c99 -Wall -Wpedantic',
|
|
'-D _POSIX_C_SOURCE=200809L',
|
|
}
|
|
|
|
exe('pwgen', {
|
|
'pwgen.c',
|
|
'pw_phonemes.c',
|
|
'pw_rand.c',
|
|
'randnum.c',
|
|
'sha1.c',
|
|
'sha1num.c',
|
|
})
|
|
file('bin/pwgen', '755', '$outdir/pwgen')
|
|
man{'pwgen.1'}
|
|
|
|
fetch 'git'
|