From 65b487ae545ea324a83654b1eba118d90fa3c989 Mon Sep 17 00:00:00 2001 From: Johannes Berg Date: Sat, 2 Feb 2019 23:16:05 +0100 Subject: [PATCH] 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 --- hs20/client/.gitignore | 1 + hs20/client/Makefile | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 hs20/client/.gitignore 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