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>
master
Johannes Berg 5 years ago committed by Jouni Malinen
parent b513ed429d
commit 65b487ae54

@ -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…
Cancel
Save