1
0
mirror of https://github.com/lxc/lxcfs.git synced 2026-02-05 09:46:18 +01:00
Files
lxcfs/share/meson.build
Stéphane Graber 3c34a19818 meson: Cleanup build files
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
2022-03-09 11:48:12 -05:00

41 lines
886 B
Meson

# SPDX-License-Identifier: LGPL-2.1-or-later
lxcfs_conf_data = custom_target(
'00-lxcfs.conf',
input: '00-lxcfs.conf.in',
output: '00-lxcfs.conf',
command: [
meson_render_jinja2,
config_h,
'@INPUT@',
'@OUTPUT@',
],
install: true,
install_dir: lxcconfdir)
lxcfs_hook_mount_data = custom_target(
'lxc.mount.hook',
input: 'lxc.mount.hook.in',
output: 'lxc.mount.hook',
command: [
meson_render_jinja2,
config_h,
'@INPUT@',
'@OUTPUT@',
],
install: true,
install_dir: lxcfssharedir)
lxcfs_hook_reboot_data = custom_target(
'lxc.reboot.hook',
input: 'lxc.reboot.hook.in',
output: 'lxc.reboot.hook',
command: [
meson_render_jinja2,
config_h,
'@INPUT@',
'@OUTPUT@',
],
install: true,
install_dir: lxcfssharedir)