forked from cilium/cilium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.quiet
More file actions
26 lines (25 loc) · 718 Bytes
/
Makefile.quiet
File metadata and controls
26 lines (25 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2017-2020 Authors of Cilium
# SPDX-License-Identifier: Apache-2.0
ifeq ($(ROOT_DIR),)
ROOT_DIR ?= $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
RELATIVE_DIR ?= $(shell echo $(realpath .) | sed "s;$(ROOT_DIR)[/]*;;")
endif
ifeq ($(V),0)
QUIET=@
ECHO_CC=echo " CC $(RELATIVE_DIR)/$@"
ECHO_GEN=echo " GEN $(RELATIVE_DIR)/"
ECHO_GO=echo " GO $(RELATIVE_DIR)/$@"
ECHO_CHECK=echo " CHECK $(RELATIVE_DIR)"
ECHO_GINKGO=echo " GINKG $(RELATIVE_DIR)"
ECHO_CLEAN=echo " CLEAN $(RELATIVE_DIR)"
SUBMAKEOPTS="-s"
else
# The whitespace at below EOLs is required for verbose case!
ECHO_CC=:
ECHO_GEN=:
ECHO_GO=:
ECHO_CHECK=:
ECHO_GINKGO=:
ECHO_CLEAN=:
SUBMAKEOPTS=
endif