Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 1 | project('flashromutils', 'c', |
Nico Huber | 2f6936b | 2019-09-24 18:31:38 +0200 | [diff] [blame] | 2 | version : run_command('util/getversion.sh', '-v').stdout().strip(), |
Nico Huber | b417c0c | 2019-09-24 22:12:40 +0200 | [diff] [blame] | 3 | license : 'GPL-2.0', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 4 | meson_version : '>=0.47.0', |
| 5 | default_options : ['warning_level=2', 'c_std=c99'], |
| 6 | ) |
| 7 | |
| 8 | # libtool versioning |
| 9 | lt_current = '1' |
| 10 | lt_revision = '0' |
| 11 | lt_age = '0' |
| 12 | lt_version = '@0@.@1@.@2@'.format(lt_current, lt_age, lt_revision) |
| 13 | |
Jacob Garber | 4a84ec2 | 2019-07-25 19:12:31 -0600 | [diff] [blame] | 14 | # hide/enable some warnings |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 15 | warning_flags = [ |
Jacob Garber | 4a84ec2 | 2019-07-25 19:12:31 -0600 | [diff] [blame] | 16 | '-Wwrite-strings', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 17 | '-Wno-unused-parameter', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 18 | '-Wno-address-of-packed-member', |
| 19 | '-Wno-enum-conversion', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 20 | '-Wno-missing-braces', |
| 21 | ] |
| 22 | |
| 23 | conf = configuration_data() |
| 24 | |
| 25 | cc = meson.get_compiler('c') |
| 26 | add_project_arguments(cc.get_supported_arguments(warning_flags), language : 'c') |
| 27 | add_project_arguments('-D_DEFAULT_SOURCE', language : 'c') |
| 28 | add_project_arguments('-D_POSIX_C_SOURCE', language : 'c') # required for fileno |
| 29 | add_project_arguments('-D_BSD_SOURCE', language : 'c') # required for glibc < v2.19 |
| 30 | add_project_arguments('-DFLASHROM_VERSION="' + meson.project_version() + '"', language : 'c') |
| 31 | |
| 32 | # get defaults from configure |
| 33 | config_atahpt = get_option('config_atahpt') |
| 34 | config_atapromise = get_option('config_atapromise') |
| 35 | config_atavia = get_option('config_atavia') |
| 36 | config_buspirate_spi = get_option('config_buspirate_spi') |
| 37 | config_ch341a_spi = get_option('config_ch341a_spi') |
| 38 | config_dediprog = get_option('config_dediprog') |
| 39 | config_developerbox_spi = get_option('config_developerbox_spi') |
| 40 | config_digilent_spi = get_option('config_digilent_spi') |
Jean THOMAS | e28d8e4 | 2022-10-11 17:54:30 +0200 | [diff] [blame] | 41 | config_dirtyjtag_spi = get_option('config_dirtyjtag_spi') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 42 | config_drkaiser = get_option('config_drkaiser') |
| 43 | config_dummy = get_option('config_dummy') |
| 44 | config_ft2232_spi = get_option('config_ft2232_spi') |
| 45 | config_gfxnvidia = get_option('config_gfxnvidia') |
| 46 | config_internal = get_option('config_internal') |
| 47 | config_it8212 = get_option('config_it8212') |
| 48 | config_linux_mtd = get_option('config_linux_mtd') |
| 49 | config_linux_spi = get_option('config_linux_spi') |
| 50 | config_mstarddc_spi = get_option('config_mstarddc_spi') |
| 51 | config_nic3com = get_option('config_nic3com') |
| 52 | config_nicintel_eeprom = get_option('config_nicintel_eeprom') |
| 53 | config_nicintel = get_option('config_nicintel') |
| 54 | config_nicintel_spi = get_option('config_nicintel_spi') |
| 55 | config_nicnatsemi = get_option('config_nicnatsemi') |
| 56 | config_nicrealtek = get_option('config_nicrealtek') |
| 57 | config_ogp_spi = get_option('config_ogp_spi') |
| 58 | config_pickit2_spi = get_option('config_pickit2_spi') |
| 59 | config_pony_spi = get_option('config_pony_spi') |
| 60 | config_rayer_spi = get_option('config_rayer_spi') |
| 61 | config_satamv = get_option('config_satamv') |
| 62 | config_satasii = get_option('config_satasii') |
| 63 | config_serprog = get_option('config_serprog') |
| 64 | config_usbblaster_spi = get_option('config_usbblaster_spi') |
Miklós Márton | 324929c | 2019-08-01 19:14:10 +0200 | [diff] [blame] | 65 | config_stlinkv3_spi = get_option('config_stlinkv3_spi') |
Thomas Heijligen | 84e9c91 | 2021-06-01 16:22:14 +0200 | [diff] [blame] | 66 | config_default_programmer_name = get_option('default_programmer_name') |
| 67 | config_default_programmer_args = get_option('default_programmer_args') |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 68 | |
| 69 | cargs = [] |
| 70 | deps = [] |
| 71 | srcs = [] |
| 72 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 73 | need_raw_access = false |
| 74 | need_serial = false |
| 75 | |
| 76 | # check for required symbols |
| 77 | if cc.has_function('clock_gettime') |
| 78 | add_project_arguments('-DHAVE_CLOCK_GETTIME=1', language : 'c') |
| 79 | endif |
| 80 | if cc.has_function('strnlen') |
| 81 | add_project_arguments('-DHAVE_STRNLEN=1', language : 'c') |
| 82 | endif |
| 83 | if cc.check_header('sys/utsname.h') |
| 84 | add_project_arguments('-DHAVE_UTSNAME=1', language : 'c') |
| 85 | endif |
| 86 | |
| 87 | # some programmers require libusb |
| 88 | if get_option('usb') |
| 89 | srcs += 'usbdev.c' |
| 90 | deps += dependency('libusb-1.0') |
| 91 | else |
| 92 | config_ch341a_spi = false |
| 93 | config_dediprog = false |
| 94 | config_digilent_spi = false |
Jean THOMAS | e28d8e4 | 2022-10-11 17:54:30 +0200 | [diff] [blame] | 95 | config_dirtyjtag_spi = false |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 96 | config_developerbox_spi = false |
Thomas Heijligen | b221cd7 | 2019-04-05 15:08:35 +0200 | [diff] [blame] | 97 | config_pickit2_spi = false |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 98 | endif |
| 99 | |
| 100 | # some programmers require libpci |
| 101 | if get_option('pciutils') |
| 102 | srcs += 'pcidev.c' |
| 103 | deps += dependency('libpci') |
| 104 | cargs += '-DNEED_PCI=1' |
| 105 | else |
| 106 | config_atahpt = false |
| 107 | config_atapromise = false |
| 108 | config_atavia = false |
| 109 | config_drkaiser = false |
| 110 | config_gfxnvidia = false |
| 111 | config_internal = false |
| 112 | config_it8212 = false |
| 113 | config_nic3com = false |
| 114 | config_nicintel_eeprom = false |
| 115 | config_nicintel = false |
| 116 | config_nicintel_spi = false |
| 117 | config_nicnatsemi = false |
| 118 | config_nicrealtek = false |
| 119 | config_ogp_spi = false |
| 120 | config_rayer_spi = false |
| 121 | config_satamv = false |
| 122 | config_satasii = false |
| 123 | endif |
| 124 | |
| 125 | # set defines for configured programmers |
| 126 | if config_atahpt |
| 127 | srcs += 'atahpt.c' |
| 128 | cargs += '-DCONFIG_ATAHPT=1' |
| 129 | endif |
| 130 | if config_atapromise |
| 131 | srcs += 'atapromise.c' |
| 132 | cargs += '-DCONFIG_ATAPROMISE=1' |
| 133 | endif |
| 134 | if config_atavia |
| 135 | srcs += 'atavia.c' |
| 136 | cargs += '-DCONFIG_ATAVIA=1' |
| 137 | endif |
| 138 | if config_buspirate_spi |
| 139 | srcs += 'buspirate_spi.c' |
| 140 | cargs += '-DCONFIG_BUSPIRATE_SPI=1' |
| 141 | need_serial = true |
| 142 | endif |
| 143 | if config_ch341a_spi |
| 144 | srcs += 'ch341a_spi.c' |
| 145 | cargs += '-DCONFIG_CH341A_SPI=1' |
| 146 | endif |
| 147 | if config_dediprog |
| 148 | srcs += 'dediprog.c' |
| 149 | cargs += '-DCONFIG_DEDIPROG=1' |
| 150 | endif |
| 151 | if config_developerbox_spi |
| 152 | srcs += 'developerbox_spi.c' |
| 153 | cargs += '-DCONFIG_DEVELOPERBOX_SPI=1' |
| 154 | endif |
| 155 | if config_digilent_spi |
| 156 | srcs += 'digilent_spi.c' |
| 157 | cargs += '-DCONFIG_DIGILENT_SPI=1' |
| 158 | endif |
Jean THOMAS | e28d8e4 | 2022-10-11 17:54:30 +0200 | [diff] [blame] | 159 | if config_dirtyjtag_spi |
| 160 | srcs += 'dirtyjtag_spi.c' |
| 161 | cargs += '-DCONFIG_DIRTYJTAG_SPI=1' |
| 162 | endif |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 163 | if config_drkaiser |
| 164 | srcs += 'drkaiser.c' |
| 165 | cargs += '-DCONFIG_DRKAISER=1' |
| 166 | endif |
| 167 | if config_dummy |
| 168 | srcs += 'dummyflasher.c' |
| 169 | cargs += '-DCONFIG_DUMMY=1' |
| 170 | endif |
| 171 | if config_ft2232_spi |
| 172 | srcs += 'ft2232_spi.c' |
| 173 | cargs += '-DCONFIG_FT2232_SPI=1' |
| 174 | deps += dependency('libftdi1') |
| 175 | cargs += '-DHAVE_FT232H=1' |
| 176 | endif |
| 177 | if config_gfxnvidia |
| 178 | srcs += 'gfxnvidia.c' |
| 179 | cargs += '-DCONFIG_GFXNVIDIA=1' |
| 180 | endif |
| 181 | if config_internal |
| 182 | srcs += 'board_enable.c' |
| 183 | srcs += 'cbtable.c' |
| 184 | srcs += 'chipset_enable.c' |
| 185 | srcs += 'internal.c' |
| 186 | srcs += 'processor_enable.c' |
| 187 | if target_machine.cpu_family() == 'x86' or target_machine.cpu_family() == 'x86_64' |
| 188 | srcs += 'amd_imc.c' |
| 189 | srcs += 'dmi.c' |
| 190 | srcs += 'ichspi.c' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 191 | srcs += 'it87spi.c' |
| 192 | srcs += 'mcp6x_spi.c' |
| 193 | srcs += 'sb600spi.c' |
| 194 | srcs += 'wbsio_spi.c' |
| 195 | endif |
| 196 | config_bitbang_spi = true |
| 197 | cargs += '-DCONFIG_INTERNAL=1' |
| 198 | if get_option('config_internal_dmi') |
| 199 | # Use internal DMI/SMBIOS decoder by default instead of relying on dmidecode. |
| 200 | cargs += '-DCONFIG_INTERNAL_DMI=1' |
| 201 | endif |
| 202 | endif |
| 203 | if config_it8212 |
| 204 | srcs += 'it8212.c' |
| 205 | cargs += '-DCONFIG_IT8212=1' |
| 206 | endif |
| 207 | if config_linux_mtd |
| 208 | srcs += 'linux_mtd.c' |
| 209 | cargs += '-DCONFIG_LINUX_MTD=1' |
| 210 | endif |
| 211 | if config_linux_spi |
| 212 | srcs += 'linux_spi.c' |
| 213 | cargs += '-DCONFIG_LINUX_SPI=1' |
| 214 | endif |
| 215 | if config_mstarddc_spi |
| 216 | srcs += 'mstarddc_spi.c' |
| 217 | cargs += '-DCONFIG_MSTARDDC_SPI=1' |
| 218 | endif |
| 219 | if config_nic3com |
| 220 | srcs += 'nic3com.c' |
| 221 | cargs += '-DCONFIG_NIC3COM=1' |
| 222 | endif |
| 223 | if config_nicintel |
| 224 | srcs += 'nicintel.c' |
| 225 | cargs += '-DCONFIG_NICINTEL=1' |
| 226 | endif |
| 227 | if config_nicintel_eeprom |
| 228 | srcs += 'nicintel_eeprom.c' |
| 229 | cargs += '-DCONFIG_NICINTEL_EEPROM=1' |
| 230 | endif |
| 231 | if config_nicintel_spi |
| 232 | srcs += 'nicintel_spi.c' |
| 233 | config_bitbang_spi = true |
| 234 | cargs += '-DCONFIG_NICINTEL_SPI=1' |
| 235 | endif |
| 236 | if config_nicnatsemi |
| 237 | srcs += 'nicnatsemi.c' |
| 238 | cargs += '-DCONFIG_NICNATSEMI=1' |
| 239 | endif |
| 240 | if config_nicrealtek |
| 241 | srcs += 'nicrealtek.c' |
| 242 | cargs += '-DCONFIG_NICREALTEK=1' |
| 243 | endif |
| 244 | if config_ogp_spi |
| 245 | config_bitbang_spi = true |
| 246 | srcs += 'ogp_spi.c' |
| 247 | cargs += '-DCONFIG_OGP_SPI=1' |
| 248 | endif |
| 249 | if config_pickit2_spi |
| 250 | srcs += 'pickit2_spi.c' |
| 251 | cargs += '-DCONFIG_PICKIT2_SPI=1' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 252 | endif |
| 253 | if config_pony_spi |
| 254 | srcs += 'pony_spi.c' |
| 255 | need_serial = true |
| 256 | config_bitbang_spi = true |
| 257 | cargs += '-DCONFIG_PONY_SPI=1' |
| 258 | endif |
| 259 | if config_rayer_spi |
| 260 | srcs += 'rayer_spi.c' |
| 261 | config_bitbang_spi = true |
| 262 | need_raw_access = true |
| 263 | cargs += '-DCONFIG_RAYER_SPI=1' |
| 264 | endif |
| 265 | if config_satamv |
| 266 | srcs += 'satamv.c' |
| 267 | cargs += '-DCONFIG_SATAMV=1' |
| 268 | endif |
| 269 | if config_satasii |
| 270 | srcs += 'satasii.c' |
| 271 | cargs += '-DCONFIG_SATASII=1' |
| 272 | endif |
| 273 | if config_serprog |
| 274 | srcs += 'serprog.c' |
| 275 | cargs += '-DCONFIG_SERPROG=1' |
| 276 | need_serial = true |
| 277 | endif |
| 278 | if config_usbblaster_spi |
| 279 | srcs += 'usbblaster_spi.c' |
| 280 | cargs += '-DCONFIG_USBBLASTER_SPI=1' |
| 281 | endif |
Miklós Márton | 324929c | 2019-08-01 19:14:10 +0200 | [diff] [blame] | 282 | if config_stlinkv3_spi |
| 283 | srcs += 'stlinkv3_spi.c' |
| 284 | cargs += '-DCONFIG_STLINKV3_SPI=1' |
| 285 | endif |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 286 | |
| 287 | # bitbanging SPI infrastructure |
| 288 | if config_bitbang_spi |
| 289 | srcs += 'bitbang_spi.c' |
| 290 | cargs += '-DCONFIG_BITBANG_SPI=1' |
| 291 | endif |
| 292 | |
| 293 | # raw memory, MSR or PCI port I/O access |
| 294 | if need_raw_access |
| 295 | srcs += 'hwaccess.c' |
| 296 | srcs += 'physmap.c' |
| 297 | cargs += '-DNEED_RAW_ACCESS=1' |
| 298 | endif |
| 299 | |
| 300 | # raw serial IO |
| 301 | if need_serial |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 302 | srcs += 'serial.c' |
Thomas Heijligen | 140c126 | 2021-09-27 15:12:26 +0200 | [diff] [blame] | 303 | if host_machine.system() == 'linux' |
| 304 | srcs += 'custom_baud_linux.c' |
| 305 | else |
| 306 | srcs += 'custom_baud.c' |
| 307 | endif |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 308 | endif |
| 309 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 310 | prefix = get_option('prefix') |
| 311 | sbindir = join_paths(prefix, get_option('sbindir')) |
| 312 | libdir = join_paths(prefix, get_option('libdir')) |
Richard Hughes | dad3a16 | 2020-02-17 09:57:01 +0000 | [diff] [blame^] | 313 | mandir = join_paths(prefix, get_option('mandir')) |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 314 | |
| 315 | install_headers([ |
| 316 | 'libflashrom.h', |
| 317 | ], |
| 318 | ) |
| 319 | |
| 320 | # core modules needed by both the library and the CLI |
| 321 | srcs += '82802ab.c' |
| 322 | srcs += 'at45db.c' |
| 323 | srcs += 'edi.c' |
| 324 | srcs += 'en29lv640b.c' |
| 325 | srcs += 'flashchips.c' |
| 326 | srcs += 'flashrom.c' |
| 327 | srcs += 'fmap.c' |
| 328 | srcs += 'helpers.c' |
| 329 | srcs += 'ich_descriptors.c' |
| 330 | srcs += 'jedec.c' |
| 331 | srcs += 'layout.c' |
| 332 | srcs += 'libflashrom.c' |
| 333 | srcs += 'opaque.c' |
| 334 | srcs += 'print.c' |
| 335 | srcs += 'programmer.c' |
Thomas Heijligen | bbfacff | 2021-03-31 20:40:01 +0200 | [diff] [blame] | 336 | srcs += 'programmer_table.c' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 337 | srcs += 'sfdp.c' |
| 338 | srcs += 'spi25.c' |
| 339 | srcs += 'spi25_statusreg.c' |
David Hendricks | 349b5d2 | 2019-10-05 12:44:27 -0700 | [diff] [blame] | 340 | srcs += 'spi95.c' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 341 | srcs += 'spi.c' |
| 342 | srcs += 'sst28sf040.c' |
| 343 | srcs += 'sst49lfxxxc.c' |
| 344 | srcs += 'sst_fwhub.c' |
| 345 | srcs += 'stm50.c' |
| 346 | srcs += 'udelay.c' |
| 347 | srcs += 'w29ee011.c' |
| 348 | srcs += 'w39.c' |
Nikolai Artemiev | da1c834 | 2021-10-21 00:58:12 +1100 | [diff] [blame] | 349 | srcs += 'writeprotect.c' |
Nikolai Artemiev | c9feb1b | 2021-10-21 01:35:13 +1100 | [diff] [blame] | 350 | srcs += 'writeprotect_ranges.c' |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 351 | |
| 352 | mapfile = 'libflashrom.map' |
| 353 | vflag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), mapfile) |
| 354 | flashrom = shared_library( |
| 355 | 'flashrom', |
| 356 | sources : [ |
| 357 | srcs, |
| 358 | ], |
| 359 | soversion : lt_current, |
| 360 | version : lt_version, |
| 361 | dependencies : [ |
| 362 | deps, |
| 363 | ], |
| 364 | c_args : [ |
| 365 | cargs, |
| 366 | ], |
| 367 | install : true, |
| 368 | link_args : vflag, |
| 369 | link_depends : mapfile, |
| 370 | ) |
| 371 | |
Mario Limonciello | d954d5d | 2019-09-24 16:06:57 -0500 | [diff] [blame] | 372 | version = meson.project_version() |
| 373 | #strip leading characters |
| 374 | if version.startswith('v') |
| 375 | version = version.split('v')[1] |
| 376 | endif |
| 377 | if version.startswith('p') |
| 378 | version = version.split('p')[1] |
| 379 | endif |
| 380 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 381 | pkgg = import('pkgconfig') |
| 382 | pkgg.generate( |
| 383 | libraries : flashrom, |
Mario Limonciello | d954d5d | 2019-09-24 16:06:57 -0500 | [diff] [blame] | 384 | version : version, |
Mario Limonciello | 2a8d439 | 2019-10-15 13:32:19 -0500 | [diff] [blame] | 385 | name : 'flashrom', |
| 386 | filebase : 'flashrom', |
| 387 | description : 'library to interact with flashrom', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 388 | ) |
| 389 | |
Richard Hughes | dad3a16 | 2020-02-17 09:57:01 +0000 | [diff] [blame^] | 390 | conf.set('VERSION', version) |
| 391 | conf.set('MAN_DATE', run_command('util/getrevision.sh', '--date', 'flashrom.8.tmpl').stdout().strip()) |
| 392 | configure_file( |
| 393 | input : 'flashrom.8.tmpl', |
| 394 | output : 'flashrom.8', |
| 395 | configuration : conf, |
| 396 | install: true, |
| 397 | install_dir: join_paths(mandir, 'man8'), |
| 398 | ) |
| 399 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 400 | flashrom_dep = declare_dependency( |
| 401 | link_with : flashrom, |
| 402 | include_directories : include_directories('.'), |
| 403 | dependencies : deps |
| 404 | ) |
| 405 | |
Thomas Heijligen | 84e9c91 | 2021-06-01 16:22:14 +0200 | [diff] [blame] | 406 | if config_default_programmer_name != '' |
| 407 | cargs += '-DCONFIG_DEFAULT_PROGRAMMER_NAME=&programmer_' + config_default_programmer_name |
| 408 | else |
| 409 | cargs += '-DCONFIG_DEFAULT_PROGRAMMER_NAME=NULL' |
| 410 | endif |
| 411 | |
| 412 | cargs += '-DCONFIG_DEFAULT_PROGRAMMER_ARGS="' + config_default_programmer_args + '"' |
| 413 | |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 414 | # we can't just link_with libflashrom as we require all the internal symbols... |
| 415 | executable( |
| 416 | 'flashrom', |
| 417 | sources : [ |
| 418 | srcs, |
| 419 | 'cli_classic.c', |
| 420 | 'cli_common.c', |
| 421 | 'cli_output.c', |
| 422 | 'flashrom.c', |
| 423 | ], |
| 424 | dependencies : [ |
| 425 | deps, |
| 426 | ], |
| 427 | c_args : [ |
| 428 | cargs, |
| 429 | '-DSTANDALONE', |
Richard Hughes | cb97368 | 2018-12-19 11:44:22 +0000 | [diff] [blame] | 430 | ], |
| 431 | install : true, |
| 432 | install_dir : sbindir, |
| 433 | ) |
| 434 | |
| 435 | subdir('util') |