mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 15:04:27 +08:00
503efe5cfc
To avoid mixing two different things at the same place, move the debugfs code into a separate file. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
17 lines
366 B
Makefile
17 lines
366 B
Makefile
smsmdtv-objs := smscoreapi.o sms-cards.o smsendian.o
|
|
smsdvb-objs := smsdvb-main.o
|
|
|
|
obj-$(CONFIG_SMS_SIANO_MDTV) += smsmdtv.o smsdvb.o
|
|
|
|
ifeq ($(CONFIG_SMS_SIANO_RC),y)
|
|
smsmdtv-objs += smsir.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SMS_SIANO_DEBUGFS),y)
|
|
smsdvb-objs += smsdvb-debugfs.o
|
|
endif
|
|
|
|
ccflags-y += -Idrivers/media/dvb-core
|
|
ccflags-y += $(extra-cflags-y) $(extra-cflags-m)
|
|
|