1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# SPDX-License-Identifier: LGPL-2.1-or-later
systemd_sysupdate_sources = files(
'sysupdate-cache.c',
'sysupdate-instance.c',
'sysupdate-partition.c',
'sysupdate-pattern.c',
'sysupdate-resource.c',
'sysupdate-transfer.c',
'sysupdate-update-set.c',
'sysupdate.c',
)
executables += [
libexec_template + {
'name' : 'systemd-sysupdate',
'public' : true,
'conditions' : ['ENABLE_SYSUPDATE'],
'sources' : systemd_sysupdate_sources,
'link_with' : [
libshared,
libshared_fdisk,
],
'dependencies' : [
libblkid,
libfdisk,
libopenssl,
threads,
],
},
]
|