1
0
mirror of https://github.com/bmartini/zynq-axis.git synced 2024-09-05 19:19:27 +08:00
zynq-axis/dev/Makefile
Berin Martini 7ad84512e8 Import zynq-uflow uio driver with name changers
Use the zynq-uflow driver as the base to develop the new platform.
2014-12-29 13:57:04 -05:00

14 lines
233 B
Makefile

obj-m := axis.o
# Path to the Linux kernel, if not passed in as arg, set default.
ifeq ($(KDIR),)
KDIR := /lib/modules/$(shell uname -r)/build
endif
all:
make -C $(KDIR) M=$(PWD) modules
clean:
make -C $(KDIR) M=$(PWD) clean