changeset 72:c9b41c438a93

hide misleading build message
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Thu, 12 Nov 2009 20:19:05 +0900
parents 28f25ec7f962
children c44e16dbb0e2
files driver/Makefile
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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