You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
386 B
21 lines
386 B
20 years ago
|
ifneq ($(KERNELRELEASE),)
|
||
|
|
||
|
pwc-objs := pwc-if.o pwc-misc.o pwc-ctrl.o pwc-uncompress.o pwc-dec1.o pwc-dec23.o pwc-kiara.o pwc-timon.o
|
||
|
|
||
|
obj-$(CONFIG_USB_PWC) += pwc.o
|
||
|
|
||
|
else
|
||
|
|
||
|
KDIR := /lib/modules/$(shell uname -r)/build
|
||
|
PWD := $(shell pwd)
|
||
|
|
||
|
default:
|
||
|
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
|
||
|
|
||
|
endif
|
||
|
|
||
|
clean:
|
||
|
rm -f *.[oas] .*.flags *.ko .*.cmd .*.d .*.tmp *.mod.c
|
||
|
rm -rf .tmp_versions
|
||
|
|