2014-10-29 21:54:47 +00:00
|
|
|
CXX = clang++
|
2018-06-28 23:27:19 +00:00
|
|
|
CXXFLAGS := ${CXX_DEBUG} -Wall -std=c++11 -DMAC_OSX
|
2018-01-06 03:48:51 +00:00
|
|
|
INCFLAGS = -I/usr/local/include
|
2018-06-28 23:27:19 +00:00
|
|
|
LDFLAGS := ${LD_DEBUG} -Wl,-rpath,/usr/local/lib -L/usr/local/lib
|
2016-12-14 14:35:15 +00:00
|
|
|
|
|
|
|
ifeq ($(USE_STATIC),yes)
|
2017-11-17 17:43:00 +00:00
|
|
|
LDLIBS = -lz /usr/local/lib/libcrypto.a /usr/local/lib/libssl.a /usr/local/lib/libboost_system.a /usr/local/lib/libboost_date_time.a /usr/local/lib/libboost_filesystem.a /usr/local/lib/libboost_program_options.a -lpthread
|
2016-12-14 14:35:15 +00:00
|
|
|
else
|
2017-11-17 17:43:00 +00:00
|
|
|
LDLIBS = -lz -lcrypto -lssl -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lpthread
|
2016-12-14 14:35:15 +00:00
|
|
|
endif
|
2014-06-15 11:03:29 +00:00
|
|
|
|
2016-06-27 13:00:00 +00:00
|
|
|
ifeq ($(USE_UPNP),yes)
|
2017-11-17 17:43:00 +00:00
|
|
|
LDFLAGS += -ldl
|
|
|
|
CXXFLAGS += -DUSE_UPNP
|
|
|
|
ifeq ($(USE_STATIC),yes)
|
|
|
|
LDLIBS += /usr/local/lib/libminiupnpc.a
|
|
|
|
else
|
|
|
|
LDLIBS += -lminiupnpc
|
|
|
|
endif
|
2015-01-03 20:33:27 +00:00
|
|
|
endif
|
|
|
|
|
2017-01-23 18:22:03 +00:00
|
|
|
ifeq ($(USE_AESNI),1)
|
2018-06-28 23:30:03 +00:00
|
|
|
CXXFLAGS += -maes
|
2017-01-23 18:22:03 +00:00
|
|
|
else
|
2017-11-17 17:43:00 +00:00
|
|
|
CXXFLAGS += -msse
|
2014-12-12 08:22:03 +00:00
|
|
|
endif
|
2014-06-15 11:03:29 +00:00
|
|
|
|
2017-01-23 18:22:03 +00:00
|
|
|
ifeq ($(USE_AVX),1)
|
2017-11-17 17:43:00 +00:00
|
|
|
CXXFLAGS += -mavx
|
2016-12-14 14:35:15 +00:00
|
|
|
endif
|
|
|
|
|
2014-12-29 16:12:05 +00:00
|
|
|
# Disabled, since it will be the default make rule. I think its better
|
|
|
|
# to define the default rule in Makefile and not Makefile.<ostype> - torkel
|
2018-08-23 15:06:37 +00:00
|
|
|
install-brew: all
|
|
|
|
install -d ${PREFIX}/bin ${PREFIX}/etc/i2pd ${PREFIX}/share/doc/i2pd ${PREFIX}/share/i2pd ${PREFIX}/share/man/man1 ${PREFIX}/var/lib/i2pd
|
|
|
|
install -m 755 ${I2PD} ${PREFIX}/bin/
|
|
|
|
install -m 644 contrib/i2pd.conf contrib/subscriptions.txt contrib/tunnels.conf ${PREFIX}/etc/i2pd
|
|
|
|
@cp -R contrib/certificates ${PREFIX}/share/i2pd/
|
|
|
|
install -m 644 ChangeLog LICENSE README.md contrib/i2pd.conf contrib/subscriptions.txt contrib/tunnels.conf ${PREFIX}/share/doc/i2pd
|
|
|
|
@gzip debian/i2pd.1 && install debian/i2pd.1.gz ${PREFIX}/share/man/man1
|
|
|
|
@ln -sf ${PREFIX}/share/i2pd/certificates ${PREFIX}/var/lib/i2pd/
|
|
|
|
@ln -sf ${PREFIX}/etc/i2pd/i2pd.conf ${PREFIX}/var/lib/i2pd/i2pd.conf
|
|
|
|
@ln -sf ${PREFIX}/etc/i2pd/subscriptions.txt ${PREFIX}/var/lib/i2pd/subscriptions.txt
|
|
|
|
@ln -sf ${PREFIX}/etc/i2pd/tunnels.conf ${PREFIX}/var/lib/i2pd/tunnels.conf
|