compiler = g++

CC      = g++$(VERS) -Wall -Wno-unused -pthread -DLEDA_MULTI_THREAD
PLAIN_C = gcc$(VERS) -Wall -pthread
CCLIB   = g++$(VERS) -shared -pthread
LD      = g++$(VERS) -pthread
PIC     = -fpic

CFLAGS  = -O2 -fno-strict-aliasing 
WERR    = -Werror

