mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-28 18:28:23 -05:00
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
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)
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user