15 lines
291 B
Meson
15 lines
291 B
Meson
|
stress = executable(
|
||
|
'stress',
|
||
|
files('stress.c'),
|
||
|
dependencies: [glib],
|
||
|
link_args: ['-static'],
|
||
|
build_by_default: false,
|
||
|
)
|
||
|
|
||
|
custom_target(
|
||
|
'initrd-stress.img',
|
||
|
output: 'initrd-stress.img',
|
||
|
input: stress,
|
||
|
command: [find_program('initrd-stress.sh'), '@OUTPUT@', '@INPUT@']
|
||
|
)
|