2014-10-30 00:54:47 +03:00
|
|
|
CXX = clang++
|
2024-09-01 22:23:14 +03:00
|
|
|
CXXFLAGS := ${CXX_DEBUG} -Wall -std=c++17
|
2018-01-06 06:48:51 +03:00
|
|
|
INCFLAGS = -I/usr/local/include
|
2023-02-26 23:38:23 +03:00
|
|
|
DEFINES := -DMAC_OSX
|
2018-09-04 10:39:46 +03:00
|
|
|
LDFLAGS := -Wl,-rpath,/usr/local/lib -L/usr/local/lib
|
2020-01-13 15:47:15 +03:00
|
|
|
LDFLAGS += -Wl,-dead_strip
|
|
|
|
LDFLAGS += -Wl,-dead_strip_dylibs
|
2016-12-14 17:35:15 +03:00
|
|
|
|
|
|
|
ifeq ($(USE_STATIC),yes)
|
2024-08-26 03:18:55 +03:00
|
|
|
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 17:35:15 +03:00
|
|
|
else
|
2024-08-26 03:18:55 +03:00
|
|
|
LDLIBS = -lz -lcrypto -lssl -lboost_system -lboost_filesystem -lboost_program_options -lpthread
|
2016-12-14 17:35:15 +03:00
|
|
|
endif
|
2014-06-15 15:03:29 +04:00
|
|
|
|
2016-06-27 16:00:00 +03:00
|
|
|
ifeq ($(USE_UPNP),yes)
|
2017-11-17 20:43:00 +03:00
|
|
|
LDFLAGS += -ldl
|
2023-02-26 23:38:23 +03:00
|
|
|
DEFINES += -DUSE_UPNP
|
2017-11-17 20:43:00 +03:00
|
|
|
ifeq ($(USE_STATIC),yes)
|
|
|
|
LDLIBS += /usr/local/lib/libminiupnpc.a
|
|
|
|
else
|
|
|
|
LDLIBS += -lminiupnpc
|
|
|
|
endif
|
2015-01-03 23:33:27 +03:00
|
|
|
endif
|
|
|
|
|
2023-03-05 18:50:03 +03:00
|
|
|
OSARCH = $(shell uname -p)
|
|
|
|
|
|
|
|
ifneq ($(OSARCH),powerpc)
|
|
|
|
ifeq ($(USE_AESNI),yes)
|
|
|
|
CXXFLAGS += -D__AES__ -maes
|
|
|
|
else
|
|
|
|
CXXFLAGS += -msse
|
|
|
|
endif
|
2014-12-12 11:22:03 +03:00
|
|
|
endif
|