citadel/poky/meta/lib/oeqa/runtime/files/hellomod_makefile

9 lines
130 B
Plaintext
Raw Normal View History

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