mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 18:57:12 +08:00
FIX: more paths for readline and Mac Os X
This commit is contained in:
parent
b01e7d206d
commit
df82844c05
1 changed files with 2 additions and 2 deletions
|
@ -41,8 +41,8 @@ ifneq (,$(findstring MINGW,$(platform)))
|
|||
endif
|
||||
|
||||
else ifeq ($(platform),Darwin)
|
||||
CFLAGS += -I/usr/include/malloc/
|
||||
LDLIBS = -L/opt/local/lib -lreadline -lpthread -lm
|
||||
CFLAGS += -I/usr/include/malloc/ -I/usr/local/opt/readline/include
|
||||
LDLIBS = -L/opt/local/lib -L/usr/local/opt/readline/lib -lreadline -lpthread -lm
|
||||
CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3
|
||||
QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
|
||||
MOC = $(shell pkg-config --variable=moc_location QtCore)
|
||||
|
|
Loading…
Reference in a new issue