mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-02-02 02:54:02 +01:00
Fixed makefile to work with Darwin/Mac OS X
This commit is contained in:
parent
166ccc7a36
commit
d4574fe1ef
6
Makefile
6
Makefile
|
@ -8,6 +8,8 @@ FLAGS = -Wall -std=c++11 -Wno-misleading-indentation
|
||||||
|
|
||||||
ifeq ($(UNAME),Linux)
|
ifeq ($(UNAME),Linux)
|
||||||
FLAGS += -g
|
FLAGS += -g
|
||||||
|
else ifeq ($(UNAME),Darwin)
|
||||||
|
FLAGS += -g
|
||||||
else ifeq ($(UNAME),FreeBSD)
|
else ifeq ($(UNAME),FreeBSD)
|
||||||
FLAGS += -g
|
FLAGS += -g
|
||||||
else
|
else
|
||||||
|
@ -23,6 +25,10 @@ LIBS = $(I2PD_PATH)/libi2pd.a -lboost_system$(BOOST_SUFFIX) -lboost_date_time$(B
|
||||||
|
|
||||||
ifeq ($(UNAME),Linux)
|
ifeq ($(UNAME),Linux)
|
||||||
LIBS += -lrt -lpthread
|
LIBS += -lrt -lpthread
|
||||||
|
else ifeq ($(UNAME),Darwin)
|
||||||
|
LIBS += -lpthread
|
||||||
|
LDFLAGS += -L/usr/local/opt/openssl@1.1/lib -L/usr/local/lib
|
||||||
|
INCFLAGS += -I/usr/local/opt/openssl@1.1/include -I/usr/local/include
|
||||||
else ifeq ($(UNAME),FreeBSD)
|
else ifeq ($(UNAME),FreeBSD)
|
||||||
LIBS += -lthr -lpthread
|
LIBS += -lthr -lpthread
|
||||||
LDFLAGS += -L/usr/local/lib
|
LDFLAGS += -L/usr/local/lib
|
||||||
|
|
Loading…
Reference in a new issue