new/yocto/poky/meta/lib/oeqa/runtime/files/hellomod_makefile

9 lines
130 B
Plaintext
Raw Normal View History

2025-05-10 21:58:58 +08:00
obj-m := hellomod.o
KDIR := /usr/src/kernel
all:
$(MAKE) -C $(KDIR) M=$(PWD) modules
clean:
$(MAKE) -C $(KDIR) M=$(PWD) clean