mirror of
https://github.com/shenmintao/aic8800d80.git
synced 2026-09-26 17:44:16 +00:00
13 lines
198 B
Makefile
13 lines
198 B
Makefile
KVER ?= $(shell uname -r)
|
|
KDIR ?= /lib/modules/$(KVER)/build
|
|
|
|
obj-m += aic_zlp_quirk.o
|
|
|
|
.PHONY: all clean
|
|
|
|
all:
|
|
$(MAKE) -C $(KDIR) M=$(CURDIR) modules
|
|
|
|
clean:
|
|
$(MAKE) -C $(KDIR) M=$(CURDIR) clean
|