summaryrefslogtreecommitdiffstats
path: root/src/core/bpf/restrict_fs/meson.build
blob: 69cde02a7b47d29eecf84ae875bd623887d30907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# SPDX-License-Identifier: LGPL-2.1-or-later

if conf.get('BPF_FRAMEWORK') != 1
        subdir_done()
endif

restrict_fs_bpf_o_unstripped = custom_target(
        'restrict-fs.bpf.unstripped.o',
        input : 'restrict-fs.bpf.c',
        output : 'restrict-fs.bpf.unstripped.o',
        command : bpf_o_unstripped_cmd)

restrict_fs_bpf_o = custom_target(
        'restrict-fs.bpf.o',
        input : restrict_fs_bpf_o_unstripped,
        output : 'restrict-fs.bpf.o',
        command : bpf_o_cmd)

restrict_fs_skel_h = custom_target(
        'restrict-fs.skel.h',
        input : restrict_fs_bpf_o,
        output : 'restrict-fs.skel.h',
        command : skel_h_cmd,
        capture : true)