1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-15 09:39:58 +00:00
i2pd/Makefile.bsd

13 lines
747 B
Makefile
Raw Permalink Normal View History

2015-12-28 10:52:02 -05:00
CXX = clang++
CXXFLAGS = -O2
2014-12-17 20:46:19 +00:00
## NOTE: NEEDED_CXXFLAGS is here so that custom CXXFLAGS can be specified at build time
## **without** overwriting the CXXFLAGS which we need in order to build.
## For example, when adding 'hardening flags' to the build
## (e.g. -fstack-protector-strong -Wformat -Werror=format-security), we do not want to remove
## -std=c++11. If you want to remove this variable please do so in a way that allows setting
## custom FLAGS to work at build-time.
NEEDED_CXXFLAGS = -std=c++11 -D_GLIBCXX_USE_NANOSLEEP=1
2014-08-11 09:51:53 -04:00
INCFLAGS = -I/usr/include/ -I/usr/local/include/
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib
2016-05-27 00:00:00 +00:00
LDLIBS = -lcrypto -lssl -lz -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lpthread