mirror of https://gitee.com/openkylin/linux.git
Staging: easycap: Makefile: replace the use of <module>-objs with <module>-y
Changed <module>-objs to <module>-y in Makefile. Signed-off-by: Tracey Dent <tdent48227@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
a4f131f07c
commit
77037b4915
|
@ -1,9 +1,9 @@
|
||||||
|
|
||||||
obj-$(CONFIG_EASYCAP) += easycap.o
|
obj-$(CONFIG_EASYCAP) += easycap.o
|
||||||
|
|
||||||
easycap-objs := easycap_main.o easycap_low.o easycap_sound.o
|
easycap-y := easycap_main.o easycap_low.o easycap_sound.o
|
||||||
easycap-objs += easycap_ioctl.o easycap_settings.o
|
easycap-y += easycap_ioctl.o easycap_settings.o
|
||||||
easycap-objs += easycap_testcard.o
|
easycap-y += easycap_testcard.o
|
||||||
|
|
||||||
ccflags-y := -Wall
|
ccflags-y := -Wall
|
||||||
# Impose all or none of the following:
|
# Impose all or none of the following:
|
||||||
|
|
Loading…
Reference in New Issue