HS 2.0: Add QUIET=1 support for building hs20-osu-client
Add QUIET=1 support to its Makefile and add the created binary to a .gitignore file. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
b513ed429d
commit
65b487ae54
2 changed files with 6 additions and 0 deletions
1
hs20/client/.gitignore
vendored
Normal file
1
hs20/client/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
hs20-osu-client
|
|
@ -8,12 +8,17 @@ ifndef LDO
|
|||
LDO=$(CC)
|
||||
endif
|
||||
|
||||
ifeq ($(QUIET), 1)
|
||||
Q=@
|
||||
E=true
|
||||
else
|
||||
Q=@
|
||||
E=echo
|
||||
ifeq ($(V), 1)
|
||||
Q=
|
||||
E=true
|
||||
endif
|
||||
endif
|
||||
|
||||
ifndef CFLAGS
|
||||
CFLAGS = -MMD -O2 -Wall -g
|
||||
|
|
Loading…
Reference in a new issue