# The implementation of the configurable make options.
#
# Oracle Linux DTrace.
# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at
# http://oss.oracle.com/licenses/upl.

verbose ?= no

help::
	@printf "Options:\n\n" >&2
	@printf "make verbose=yes [target]      Enable verbose building\n" >&2
	@printf "\n" >&2

ifeq ($(verbose),no)
override MAKEFLAGS += --silent
endif
