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