Merge tag 'rpmsg-v4.17' of git://github.com/andersson/remoteproc
[linux-2.6-block.git] / samples / seccomp / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
6275ecbc 2ifndef CROSS_COMPILE
f6041c1d 3hostprogs-$(CONFIG_SAMPLE_SECCOMP) := bpf-fancy dropper bpf-direct
8ac270d1
WD
4
5HOSTCFLAGS_bpf-fancy.o += -I$(objtree)/usr/include
6HOSTCFLAGS_bpf-fancy.o += -idirafter $(objtree)/include
7HOSTCFLAGS_bpf-helper.o += -I$(objtree)/usr/include
8HOSTCFLAGS_bpf-helper.o += -idirafter $(objtree)/include
561381a1 9bpf-fancy-objs := bpf-fancy.o bpf-helper.o
8ac270d1
WD
10
11HOSTCFLAGS_dropper.o += -I$(objtree)/usr/include
12HOSTCFLAGS_dropper.o += -idirafter $(objtree)/include
13dropper-objs := dropper.o
14
8ac270d1
WD
15HOSTCFLAGS_bpf-direct.o += -I$(objtree)/usr/include
16HOSTCFLAGS_bpf-direct.o += -idirafter $(objtree)/include
561381a1 17bpf-direct-objs := bpf-direct.o
8ac270d1
WD
18
19# Try to match the kernel target.
e9107f88 20ifndef CONFIG_64BIT
b25b09ec
HC
21
22# s390 has -m31 flag to build 31 bit binaries
23ifndef CONFIG_S390
24MFLAG = -m32
25else
26MFLAG = -m31
27endif
28
29HOSTCFLAGS_bpf-direct.o += $(MFLAG)
30HOSTCFLAGS_dropper.o += $(MFLAG)
31HOSTCFLAGS_bpf-helper.o += $(MFLAG)
32HOSTCFLAGS_bpf-fancy.o += $(MFLAG)
33HOSTLOADLIBES_bpf-direct += $(MFLAG)
34HOSTLOADLIBES_bpf-fancy += $(MFLAG)
35HOSTLOADLIBES_dropper += $(MFLAG)
8ac270d1 36endif
0af04ba5 37always := $(hostprogs-m)
e9107f88 38endif