]> git.ipfire.org Git - thirdparty/kmod.git/blob - testsuite/module-playground/Makefile
testsuite: beef up module-playground in the build system
[thirdparty/kmod.git] / testsuite / module-playground / Makefile
1 ifneq ($(KERNELRELEASE),)
2 # kbuild part of makefile
3 obj-m := mod-simple.o
4 else
5 # normal makefile
6 KDIR ?= /lib/modules/`uname -r`/build
7 KVER ?= `uname -r`
8
9 default:
10 $(MAKE) -C $(KDIR) M=$$PWD
11
12 clean:
13 $(MAKE) -C $(KDIR) M=$$PWD clean
14
15 endif