mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-12 18:25:07 +08:00
FIX: remove linker directive warnings used with compiler in CLANG, OS X.
This commit is contained in:
parent
3c88bb5e59
commit
0b5ee43392
3 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,7 @@ CLEAN = $(CMDOBJS)
|
|||
CC= gcc
|
||||
CFLAGS= -O2 -Wall -Wno-unused-variable -Wno-unused-function
|
||||
LDFLAGS= $(SYSLDFLAGS) $(libjansson_la_LDFLAGS)
|
||||
LIBS= -lm $(SYSLIBS) $(MYLIBS)
|
||||
LIBS= $(SYSLIBS) $(MYLIBS)
|
||||
DEFAULT_INCLUDES = -I.
|
||||
DEFS = -DHAVE_STDINT_H
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ CLEAN = $(CMDOBJS)
|
|||
|
||||
CC= gcc
|
||||
CFLAGS= -O2 -Wall -Wno-unused-variable -Wno-unused-function
|
||||
LIBS= -lm $(SYSLIBS) $(MYLIBS)
|
||||
LIBS= $(SYSLIBS) $(MYLIBS)
|
||||
DEFAULT_INCLUDES = -I. -I..
|
||||
DEFS = -DHAVE_STDINT_H
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@ CLEAN = $(CMDOBJS)
|
|||
CC= gcc
|
||||
CFLAGS= -O2 -Wall -Wno-unused-variable -Wno-unused-function
|
||||
LDFLAGS= $(SYSLDFLAGS) $(mbedtls_LDFLAGS)
|
||||
LIBS= -lm $(SYSLIBS) $(MYLIBS)
|
||||
LIBS= $(SYSLIBS) $(MYLIBS)
|
||||
DEFAULT_INCLUDES = -I. -I..
|
||||
DEFS = -DHAVE_STDINT_H
|
||||
|
||||
|
|
Loading…
Reference in a new issue