1sysprof = dependency('sysprof-capture-4', required: false) 2 3stress = executable( 4 'stress', 5 files('stress.c'), 6 dependencies: [glib, sysprof], 7 link_args: ['-static'], 8 build_by_default: false, 9) 10 11custom_target( 12 'initrd-stress.img', 13 output: 'initrd-stress.img', 14 input: stress, 15 command: [find_program('initrd-stress.sh'), '@OUTPUT@', '@INPUT@'] 16) 17