summaryrefslogtreecommitdiffstats
path: root/driver/mostcore/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'driver/mostcore/Makefile')
-rw-r--r--driver/mostcore/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/driver/mostcore/Makefile b/driver/mostcore/Makefile
new file mode 100644
index 0000000..d88272a
--- /dev/null
+++ b/driver/mostcore/Makefile
@@ -0,0 +1,17 @@
+# Makefile
+#
+
+SRC := $(shell pwd)
+
+obj-m := mostcore.o
+mostcore-y := core.o
+
+all:
+ $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules
+
+modules_install:
+ $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install
+
+clean:
+ $(MAKE) -C $(KERNEL_SRC) M=$(SRC) clean
+