Makefile
changeset 2369 80ca2ba71384
parent 2356 43d1812406e7
child 2377 4255e8006dc3
equal deleted inserted replaced
2368:cb44b5c6953d 2369:80ca2ba71384
   734 ##############################################################################
   734 ##############################################################################
   735 #
   735 #
   736 # Build commands
   736 # Build commands
   737 #
   737 #
   738 
   738 
   739 # If we are verbose, we will show commands prefixed by $(Q) (which acts as
   739 # If we are verbose, we will show commands prefixed by $(Q).
   740 # @ in the non-verbose mode), and we will show the "real" cmds instead of
   740 # The $(Q)s get replaced by @ in non-verbose mode.
   741 # their quiet versions (which are used in the non-verbose mode).
       
   742 # Inspired by the Linux kernel build system.
   741 # Inspired by the Linux kernel build system.
   743 ifdef VERBOSE
   742 ifdef VERBOSE
   744 	Q =
   743 	Q =
   745 	quiet =
       
   746 else
   744 else
   747 	Q = @
   745 	Q = @
   748 	quiet = quiet_
       
   749 endif
   746 endif
   750 
   747 
   751 
   748 
   752 ##############################################################################
   749 ##############################################################################
   753 #
   750 #