13 lines
229 B
Makefile
13 lines
229 B
Makefile
|
# Supported: GCC, CLANG, ICC
|
||
|
TAG ?= ICC
|
||
|
ENABLE_OPENMP ?= false
|
||
|
# Supported: rb, mg
|
||
|
SOLVER ?= mg
|
||
|
# Run in debug settings
|
||
|
DEBUG ?= false
|
||
|
|
||
|
#Feature options
|
||
|
OPTIONS += -DARRAY_ALIGNMENT=64
|
||
|
OPTIONS += -DVERBOSE
|
||
|
#OPTIONS += -DDEBUG
|