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:
Johannes Berg 2019-02-02 23:16:05 +01:00 committed by Jouni Malinen
parent b513ed429d
commit 65b487ae54
2 changed files with 6 additions and 0 deletions

1
hs20/client/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
hs20-osu-client

View file

@ -8,12 +8,17 @@ ifndef LDO
LDO=$(CC) LDO=$(CC)
endif endif
ifeq ($(QUIET), 1)
Q=@
E=true
else
Q=@ Q=@
E=echo E=echo
ifeq ($(V), 1) ifeq ($(V), 1)
Q= Q=
E=true E=true
endif endif
endif
ifndef CFLAGS ifndef CFLAGS
CFLAGS = -MMD -O2 -Wall -g CFLAGS = -MMD -O2 -Wall -g