blob: bbbd276659ba5edad0e01b915d03639c7980803f [file] [log] [blame]
Will Drewry8ac270d2012-04-12 16:48:04 -05001# kbuild trick to avoid linker error. Can be omitted if a module is built.
2obj- := dummy.o
3
Will Drewry561381a2012-04-18 19:50:25 -05004hostprogs-$(CONFIG_SECCOMP_FILTER) := bpf-fancy dropper bpf-direct
Will Drewry8ac270d2012-04-12 16:48:04 -05005
6HOSTCFLAGS_bpf-fancy.o += -I$(objtree)/usr/include
7HOSTCFLAGS_bpf-fancy.o += -idirafter $(objtree)/include
8HOSTCFLAGS_bpf-helper.o += -I$(objtree)/usr/include
9HOSTCFLAGS_bpf-helper.o += -idirafter $(objtree)/include
Will Drewry561381a2012-04-18 19:50:25 -050010bpf-fancy-objs := bpf-fancy.o bpf-helper.o
Will Drewry8ac270d2012-04-12 16:48:04 -050011
12HOSTCFLAGS_dropper.o += -I$(objtree)/usr/include
13HOSTCFLAGS_dropper.o += -idirafter $(objtree)/include
14dropper-objs := dropper.o
15
Will Drewry8ac270d2012-04-12 16:48:04 -050016HOSTCFLAGS_bpf-direct.o += -I$(objtree)/usr/include
17HOSTCFLAGS_bpf-direct.o += -idirafter $(objtree)/include
Will Drewry561381a2012-04-18 19:50:25 -050018bpf-direct-objs := bpf-direct.o
Will Drewry8ac270d2012-04-12 16:48:04 -050019
20# Try to match the kernel target.
Heiko Carstensb25b09e2012-09-08 10:23:42 +020021ifndef CONFIG_64BIT
22
23# s390 has -m31 flag to build 31 bit binaries
24ifndef CONFIG_S390
25MFLAG = -m32
26else
27MFLAG = -m31
28endif
29
30HOSTCFLAGS_bpf-direct.o += $(MFLAG)
31HOSTCFLAGS_dropper.o += $(MFLAG)
32HOSTCFLAGS_bpf-helper.o += $(MFLAG)
33HOSTCFLAGS_bpf-fancy.o += $(MFLAG)
34HOSTLOADLIBES_bpf-direct += $(MFLAG)
35HOSTLOADLIBES_bpf-fancy += $(MFLAG)
36HOSTLOADLIBES_dropper += $(MFLAG)
Will Drewry8ac270d2012-04-12 16:48:04 -050037endif
38
39# Tell kbuild to always build the programs
40always := $(hostprogs-y)