redpitaya-puzzlefw/sw/src/linux_driver/Makefile

17 lines
277 B
Makefile
Raw Normal View History

2024-08-02 21:02:17 +02:00
#
# 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