mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
meson: Move bootctl sources defintion to its own file
The root meson.build file is already large enough.
This commit is contained in:
parent
e830d6dd2d
commit
cd4300f30f
20
meson.build
20
meson.build
@ -2173,6 +2173,7 @@ subdir('src/journal')
|
|||||||
subdir('src/libsystemd-network')
|
subdir('src/libsystemd-network')
|
||||||
|
|
||||||
subdir('src/analyze')
|
subdir('src/analyze')
|
||||||
|
subdir('src/boot')
|
||||||
subdir('src/busctl')
|
subdir('src/busctl')
|
||||||
subdir('src/coredump')
|
subdir('src/coredump')
|
||||||
subdir('src/cryptenroll')
|
subdir('src/cryptenroll')
|
||||||
@ -2608,24 +2609,7 @@ if conf.get('HAVE_BLKID') == 1 and conf.get('HAVE_GNU_EFI') == 1
|
|||||||
|
|
||||||
exe = executable(
|
exe = executable(
|
||||||
'bootctl',
|
'bootctl',
|
||||||
['src/boot/bootctl.c',
|
bootctl_sources,
|
||||||
'src/boot/bootctl.h',
|
|
||||||
'src/boot/bootctl-install.c',
|
|
||||||
'src/boot/bootctl-install.h',
|
|
||||||
'src/boot/bootctl-random-seed.c',
|
|
||||||
'src/boot/bootctl-random-seed.h',
|
|
||||||
'src/boot/bootctl-reboot-to-firmware.c',
|
|
||||||
'src/boot/bootctl-reboot-to-firmware.h',
|
|
||||||
'src/boot/bootctl-set-efivar.c',
|
|
||||||
'src/boot/bootctl-set-efivar.h',
|
|
||||||
'src/boot/bootctl-status.c',
|
|
||||||
'src/boot/bootctl-status.h',
|
|
||||||
'src/boot/bootctl-systemd-efi-options.c',
|
|
||||||
'src/boot/bootctl-systemd-efi-options.h',
|
|
||||||
'src/boot/bootctl-uki.c',
|
|
||||||
'src/boot/bootctl-uki.h',
|
|
||||||
'src/boot/bootctl-util.c',
|
|
||||||
'src/boot/bootctl-util.h'],
|
|
||||||
include_directories : includes,
|
include_directories : includes,
|
||||||
link_with : [boot_link_with],
|
link_with : [boot_link_with],
|
||||||
dependencies : [libblkid,
|
dependencies : [libblkid,
|
||||||
|
22
src/boot/meson.build
Normal file
22
src/boot/meson.build
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||||
|
|
||||||
|
bootctl_sources = files(
|
||||||
|
'bootctl-install.c',
|
||||||
|
'bootctl-install.h',
|
||||||
|
'bootctl-random-seed.c',
|
||||||
|
'bootctl-random-seed.h',
|
||||||
|
'bootctl-reboot-to-firmware.c',
|
||||||
|
'bootctl-reboot-to-firmware.h',
|
||||||
|
'bootctl-set-efivar.c',
|
||||||
|
'bootctl-set-efivar.h',
|
||||||
|
'bootctl-status.c',
|
||||||
|
'bootctl-status.h',
|
||||||
|
'bootctl-systemd-efi-options.c',
|
||||||
|
'bootctl-systemd-efi-options.h',
|
||||||
|
'bootctl-uki.c',
|
||||||
|
'bootctl-uki.h',
|
||||||
|
'bootctl-util.c',
|
||||||
|
'bootctl-util.h',
|
||||||
|
'bootctl.c',
|
||||||
|
'bootctl.h',
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user