diff options
Diffstat (limited to '2/module/Makefile')
-rw-r--r-- | 2/module/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2/module/Makefile b/2/module/Makefile new file mode 100644 index 0000000..01b2177 --- /dev/null +++ b/2/module/Makefile @@ -0,0 +1,12 @@ +RELEASE = 6.6.15-ti-rt-arm32-r1 +KERNEL := ../headers/ +ARCH := arm +CROSS_COMPILE := arm-linux-gnueabi- + +obj-m += lork.o +lork-y += main.o +lork-y += fopdrv.o + +all: + $(MAKE) -C $(KERNEL) M=$(PWD) modules + |