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