diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-05-11 17:44:19 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-05-11 17:44:19 +0200 |
commit | 11181adc990dd71f7c7c27b0486bd05744654a33 (patch) | |
tree | 6e4839f234c7b6a349cbab21cd461be7a2fc0ee5 /2/module/Makefile | |
parent | 159f34a6637ad2685748e34ab904f8ad95c5073e (diff) |
WIP container cross-compile builds (dropped)
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 + |