]> git.ipfire.org Git - thirdparty/systemd.git/blame - units/user/meson.build
tree-wide: beautify remaining copyright statements
[thirdparty/systemd.git] / units / user / meson.build
CommitLineData
3a726fcd
ZJS
1# SPDX-License-Identifier: LGPL-2.1+
2#
96b2fb93 3# Copyright © 2017 Zbigniew Jędrzejewski-Szmek
3a726fcd 4
5c23128d 5units = [
37efbbd8
ZJS
6 'basic.target',
7 'bluetooth.target',
8 'default.target',
9 'exit.target',
10 'graphical-session-pre.target',
11 'graphical-session.target',
12 'paths.target',
13 'printer.target',
14 'shutdown.target',
15 'smartcard.target',
16 'sockets.target',
17 'sound.target',
18 'timers.target',
cfdda37c 19 'systemd-tmpfiles-clean.timer',
37efbbd8 20]
5c23128d
ZJS
21
22foreach file : units
37efbbd8
ZJS
23 install_data(file,
24 install_dir : userunitdir)
5c23128d
ZJS
25endforeach
26
5c23128d 27in_units = [
37efbbd8 28 'systemd-exit.service',
cfdda37c
ZJS
29 'systemd-tmpfiles-clean.service',
30 'systemd-tmpfiles-setup.service',
37efbbd8 31]
5c23128d
ZJS
32
33foreach file : in_units
37efbbd8
ZJS
34 gen = configure_file(
35 input : file + '.in',
36 output : file,
37 configuration : substs)
38 install_data(gen,
39 install_dir : userunitdir)
5c23128d 40endforeach