summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/files/hellomod_makefile
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/files/hellomod_makefile')
-rw-r--r--meta/lib/oeqa/runtime/files/hellomod_makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/files/hellomod_makefile b/meta/lib/oeqa/runtime/files/hellomod_makefile
new file mode 100644
index 0000000000..b92d5c8fe0
--- /dev/null
+++ b/meta/lib/oeqa/runtime/files/hellomod_makefile
@@ -0,0 +1,8 @@
1obj-m := hellomod.o
2KDIR := /usr/src/kernel
3
4all:
5 $(MAKE) -C $(KDIR) M=$(PWD) modules
6
7clean:
8 $(MAKE) -C $(KDIR) M=$(PWD) clean