mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
mfd_aes_brute: fix deprecated flags warning & stop showinfo photobombing
This commit is contained in:
parent
3907be8017
commit
6c8a4972b1
1 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
MYSRCPATHS = ../../common ../../common/mbedtls
|
MYSRCPATHS = ../../common ../../common/mbedtls
|
||||||
MYSRCS = util_posix.c randoms.c
|
MYSRCS = util_posix.c randoms.c
|
||||||
MYINCLUDES = -I../../include -I../../common -I../../common/mbedtls
|
MYINCLUDES = -I../../include -I../../common -I../../common/mbedtls
|
||||||
MYCFLAGS = -Ofast
|
MYCFLAGS = -O3 -ffast-math
|
||||||
MYDEFS =
|
MYDEFS =
|
||||||
MYLDLIBS = -lcrypto
|
MYLDLIBS = -lcrypto
|
||||||
|
|
||||||
|
@ -43,7 +43,8 @@ ifeq ($(USE_MACPORTS),1)
|
||||||
MYLDFLAGS += -L$(MACPORTS_PREFIX)/lib/openssl-3 -L$(MACPORTS_PREFIX)/lib/openssl-1.1
|
MYLDFLAGS += -L$(MACPORTS_PREFIX)/lib/openssl-3 -L$(MACPORTS_PREFIX)/lib/openssl-1.1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
showinfo: $(info c flags: $(MYCFLAGS))
|
showinfo:
|
||||||
|
@echo "C flags: $(MYCFLAGS)"
|
||||||
|
|
||||||
brute_key : $(OBJDIR)/brute_key.o $(MYOBJS)
|
brute_key : $(OBJDIR)/brute_key.o $(MYOBJS)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue