17 lines
277 B
Makefile
17 lines
277 B
Makefile
|
|
||
|
#
|
||
|
# To build this driver, you need a Linux kernel source tree,
|
||
|
# fully configured and built. Set KDIR to point to that tree.
|
||
|
#
|
||
|
|
||
|
obj-m += puzzlefw.o
|
||
|
|
||
|
.PHONY: modules
|
||
|
modules:
|
||
|
$(MAKE) -C $(KDIR) M=$(CURDIR) modules
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
$(MAKE) -C $(KDIR) M=$(CURDIR) clean
|
||
|
|