1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-15 22:09:57 +00:00
i2pd/Makefile.osx

30 lines
800 B
Makefile
Raw Normal View History

2014-10-29 21:54:47 +00:00
CXX = clang++
2024-09-01 15:23:14 -04:00
CXXFLAGS := ${CXX_DEBUG} -Wall -std=c++17
2018-01-06 11:48:51 +08:00
INCFLAGS = -I/usr/local/include
DEFINES := -DMAC_OSX
LDFLAGS := -Wl,-rpath,/usr/local/lib -L/usr/local/lib
LDFLAGS += -Wl,-dead_strip
LDFLAGS += -Wl,-dead_strip_dylibs
2016-12-14 09:35:15 -05:00
ifeq ($(USE_STATIC),yes)
LDLIBS = -lz /usr/local/lib/libcrypto.a /usr/local/lib/libssl.a /usr/local/lib/libboost_system.a /usr/local/lib/libboost_filesystem.a /usr/local/lib/libboost_program_options.a -lpthread
2016-12-14 09:35:15 -05:00
else
LDLIBS = -lz -lcrypto -lssl -lboost_system -lboost_filesystem -lboost_program_options -lpthread
2016-12-14 09:35:15 -05:00
endif
ifeq ($(USE_UPNP),yes)
LDFLAGS += -ldl
DEFINES += -DUSE_UPNP
ifeq ($(USE_STATIC),yes)
LDLIBS += /usr/local/lib/libminiupnpc.a
else
LDLIBS += -lminiupnpc
endif
2015-01-03 21:33:27 +01:00
endif
OSARCH = $(shell uname -p)
ifneq ($(OSARCH),powerpc)
2024-12-07 15:27:23 -05:00
CXXFLAGS += -msse
2014-12-12 08:22:03 +00:00
endif