]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - samples/seccomp/Makefile
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-kernels.git] / samples / seccomp / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
8ac270d1
WD
2# kbuild trick to avoid linker error. Can be omitted if a module is built.
3obj- := dummy.o
4
f6041c1d 5hostprogs-$(CONFIG_SAMPLE_SECCOMP) := bpf-fancy dropper bpf-direct
8ac270d1
WD
6
7HOSTCFLAGS_bpf-fancy.o += -I$(objtree)/usr/include
8HOSTCFLAGS_bpf-fancy.o += -idirafter $(objtree)/include
9HOSTCFLAGS_bpf-helper.o += -I$(objtree)/usr/include
10HOSTCFLAGS_bpf-helper.o += -idirafter $(objtree)/include
561381a1 11bpf-fancy-objs := bpf-fancy.o bpf-helper.o
8ac270d1
WD
12
13HOSTCFLAGS_dropper.o += -I$(objtree)/usr/include
14HOSTCFLAGS_dropper.o += -idirafter $(objtree)/include
15dropper-objs := dropper.o
16
8ac270d1
WD
17HOSTCFLAGS_bpf-direct.o += -I$(objtree)/usr/include
18HOSTCFLAGS_bpf-direct.o += -idirafter $(objtree)/include
561381a1 19bpf-direct-objs := bpf-direct.o
8ac270d1
WD
20
21# Try to match the kernel target.
275aaa68 22ifndef CROSS_COMPILE
e9107f88 23ifndef CONFIG_64BIT
b25b09ec
HC
24
25# s390 has -m31 flag to build 31 bit binaries
26ifndef CONFIG_S390
27MFLAG = -m32
28else
29MFLAG = -m31
30endif
31
32HOSTCFLAGS_bpf-direct.o += $(MFLAG)
33HOSTCFLAGS_dropper.o += $(MFLAG)
34HOSTCFLAGS_bpf-helper.o += $(MFLAG)
35HOSTCFLAGS_bpf-fancy.o += $(MFLAG)
36HOSTLOADLIBES_bpf-direct += $(MFLAG)
37HOSTLOADLIBES_bpf-fancy += $(MFLAG)
38HOSTLOADLIBES_dropper += $(MFLAG)
8ac270d1 39endif
0af04ba5 40always := $(hostprogs-m)
e9107f88
MC
41else
42# MIPS system calls are defined based on the -mabi that is passed
43# to the toolchain which may or may not be a valid option
44# for the host toolchain. So disable tests if target architecture
45# is MIPS but the host isn't.
46ifndef CONFIG_MIPS
0af04ba5 47always := $(hostprogs-m)
e9107f88
MC
48endif
49endif