summaryrefslogtreecommitdiffstats
path: root/kernel/Makefile
blob: 7881b98bc572ebc1af4e19f8c793c7d1a708d4be (plain)
1
2
3
4
5
6
7
8
9
10
11
ifndef IP_SET_MAX
$(error "Use the toplevel Makefile, not the one in the kernel/ subdirectory")
endif

ifneq ($(KERNELRELEASE),)
include Kbuild
else
KERNELDIR := /lib/modules/`uname -r`/build
all::
	$(MAKE) -C $(KERNELDIR) M=`pwd` $@
endif