mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
This will allow for other types of root filesystems that don't rely on Buildroot to be added and used in the future. Propagate --verbose on all build scripts to see full GCC commands. build-all: allow for neat subsets also 9p share rootfs_overlay. TODO document.
8 lines
187 B
Makefile
8 lines
187 B
Makefile
obj-m += $(OBJECT_FILES)
|
|
ccflags-y := -DDEBUG -g -std=gnu99 -Werror -Wno-declaration-after-statement -Wframe-larger-than=1000000000
|
|
|
|
.PHONY: all
|
|
|
|
all:
|
|
$(MAKE) -C '$(LINUX_DIR)' M='$(M)'
|