mirror of
https://github.com/oasislinux/oasis.git
synced 2026-05-12 21:34:47 +02:00
24 lines
340 B
Lua
24 lines
340 B
Lua
cflags {
|
|
'-std=c99', '-Wpedantic', '-Wall', '-Wextra',
|
|
'-D _DEFAULT_SOURCE',
|
|
'-D _XOPEN_SOURCE=700',
|
|
'-D _BSD_SOURCE',
|
|
'-D VERSION=0',
|
|
'-I $dir',
|
|
}
|
|
|
|
exe('quark', {
|
|
'main.c',
|
|
'connection.c',
|
|
'data.c',
|
|
'http.c',
|
|
'queue.c',
|
|
'server.c',
|
|
'sock.c',
|
|
'util.c',
|
|
})
|
|
file('bin/quark', '755', '$outdir/quark')
|
|
man{'quark.1'}
|
|
|
|
fetch 'git'
|