i2pd/Makefile.linux

13 lines
314 B
Text
Raw Normal View History

CC = g++
2014-09-19 03:35:09 +00:00
CFLAGS = -g -Wall -std=c++11
include filelist.mk
2014-08-17 07:35:09 +02:00
INCFLAGS =
2014-09-19 04:14:04 +00:00
LDFLAGS = -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
2014-08-17 07:35:09 +02:00
LIBS =
#check if AES-NI is supported by CPU
2014-08-17 07:35:09 +02:00
ifneq ($(shell grep -c aes /proc/cpuinfo),0)
2014-09-13 14:36:36 -04:00
CPU_FLAGS = -maes -DAESNI
endif