new/yocto/poky/meta/lib/oeqa/runtime/files/hellomod_makefile
2025-05-10 21:58:58 +08:00

9 lines
130 B
Plaintext

obj-m := hellomod.o
KDIR := /usr/src/kernel
all:
$(MAKE) -C $(KDIR) M=$(PWD) modules
clean:
$(MAKE) -C $(KDIR) M=$(PWD) clean