Skip to content

Commit

Permalink
mfd_aes_brute: fix deprecated flags warning & stop showinfo photobombing
Browse files Browse the repository at this point in the history
  • Loading branch information
doegox committed Nov 15, 2024
1 parent 3907be8 commit 6c8a497
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/mfd_aes_brute/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MYSRCPATHS = ../../common ../../common/mbedtls
MYSRCS = util_posix.c randoms.c
MYINCLUDES = -I../../include -I../../common -I../../common/mbedtls
MYCFLAGS = -Ofast
MYCFLAGS = -O3 -ffast-math
MYDEFS =
MYLDLIBS = -lcrypto

Expand Down Expand Up @@ -43,7 +43,8 @@ ifeq ($(USE_MACPORTS),1)
MYLDFLAGS += -L$(MACPORTS_PREFIX)/lib/openssl-3 -L$(MACPORTS_PREFIX)/lib/openssl-1.1
endif

showinfo: $(info c flags: $(MYCFLAGS))
showinfo:
@echo "C flags: $(MYCFLAGS)"

brute_key : $(OBJDIR)/brute_key.o $(MYOBJS)

Expand Down

0 comments on commit 6c8a497

Please sign in to comment.