7 lines
172 B
Makefile
7 lines
172 B
Makefile
CXX=g++
|
|
CXXFLAGS=-I../../src -I../../src/STUBS -Wall -Wextra -O3 -fPIC -I../../src/OPENMP -fopenmp
|
|
LD=$(CXX) -shared -rdynamic -fopenmp
|
|
DSOEXT=.so
|
|
|
|
include Makefile.common
|