# HG changeset patch # User Yoshiki Yazawa # Date 1258024745 -32400 # Node ID c9b41c438a93009472d9a044bf7a61aa1ed4f756 # Parent 28f25ec7f96244e5bc4787fce24aa3fd3977c70f hide misleading build message diff -r 28f25ec7f962 -r c9b41c438a93 driver/Makefile --- a/driver/Makefile Sat Oct 31 04:15:22 2009 +0900 +++ b/driver/Makefile Thu Nov 12 20:19:05 2009 +0900 @@ -1,12 +1,13 @@ TARGET:= pt1_drv.ko +VERBOSITY = 0 all: ${TARGET} pt1_drv.ko: pt1_pci.c pt1_i2c.c pt1_tuner.c pt1_tuner_data.c - make -C /lib/modules/`uname -r`/build M=`pwd` V=1 modules + make -C /lib/modules/`uname -r`/build M=`pwd` V=$(VERBOSITY) modules clean: - make -C /lib/modules/`uname -r`/build M=`pwd` V=1 clean + make -C /lib/modules/`uname -r`/build M=`pwd` V=$(VERBOSITY) clean obj-m := pt1_drv.o