diff options
Diffstat (limited to 'v4l/Makefile')
-rw-r--r-- | v4l/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/v4l/Makefile b/v4l/Makefile index 2d18c8d66..02eead390 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -166,15 +166,16 @@ default:: links .version $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) $(MYCFLAGS) modules links:: - find ../linux/drivers/media/video -name '*.[c,h]' -type f -exec ln -sf '{}' . \; - find ../linux/kernel/drivers/usb/media -name '*.[c,h]' -type f -exec ln -sf '{}' . \; + @echo creating symbolic links... + @find ../linux/drivers/media/video -name '*.[c,h]' -type f -exec ln -sf '{}' . \; + @find ../linux/kernel/drivers/usb/media -name '*.[c,h]' -type f -exec ln -sf '{}' . \; # for merged-trees: - find ../linux -name '*.[c,h]' -type l -exec ln -sf '{}' . \; + @find ../linux -name '*.[c,h]' -type l -exec ln -sf '{}' . \; -# find ../linux/include -name '*.[h]' -type f -exec ln -sf '{}' . \; +# @find ../linux/include -name '*.[h]' -type f -exec ln -sf '{}' . \; - ln -sf ../linux/drivers/media/common/ir-common.c . + @ln -sf ../linux/drivers/media/common/ir-common.c . install:: rminstall @echo -e "\nInstalling new V4L modules at corresponding Kernel dir..." |