From: Johannes Berg Date: Sat, 2 Feb 2019 22:16:05 +0000 (+0100) Subject: HS 2.0: Add QUIET=1 support for building hs20-osu-client X-Git-Tag: hostap_2_8~415 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65b487ae545ea324a83654b1eba118d90fa3c989;p=thirdparty%2Fhostap.git 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 --- diff --git a/hs20/client/.gitignore b/hs20/client/.gitignore new file mode 100644 index 000000000..d2fd60fb4 --- /dev/null +++ b/hs20/client/.gitignore @@ -0,0 +1 @@ +hs20-osu-client diff --git a/hs20/client/Makefile b/hs20/client/Makefile index fc9b61940..67f6f55c5 100644 --- a/hs20/client/Makefile +++ b/hs20/client/Makefile @@ -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