2014-10-29 21:54:47 +00:00
|
|
|
CXX = clang++
|
|
|
|
CXXFLAGS = -g -Wall -std=c++11 -lstdc++ -I/usr/local/include
|
2014-07-17 17:12:52 +00:00
|
|
|
include filelist.mk
|
2014-06-15 11:03:29 +00:00
|
|
|
INCFLAGS = -DCRYPTOPP_DISABLE_ASM
|
2014-10-30 22:47:19 +00:00
|
|
|
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib
|
|
|
|
LDLIBS = -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
|
2014-08-17 05:35:09 +00:00
|
|
|
LIBS =
|
2014-06-15 11:03:29 +00:00
|
|
|
|
2014-07-14 03:59:54 +00:00
|
|
|
# OSX Notes
|
|
|
|
# http://www.hutsby.net/2011/08/macs-with-aes-ni.html
|
|
|
|
# Seems like all recent Mac's have AES-NI, after firmware upgrade 2.2
|
|
|
|
# Found no good way to detect it from command line. TODO: Might be some osx sysinfo magic
|
2014-10-29 21:54:47 +00:00
|
|
|
CXXFLAGS += -maes -DAESNI
|
2014-06-15 11:03:29 +00:00
|
|
|
|
|
|
|
# Apple Mac OSX
|
|
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
ifeq ($(UNAME_S),Darwin)
|
|
|
|
endif
|