mirror of
https://github.com/bmartini/zynq-axis.git
synced 2024-09-05 19:19:27 +08:00
14 lines
233 B
Makefile
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
|