aboutsummaryrefslogtreecommitdiff
path: root/tools/findoptimalconfig/Makefile
blob: 5e1481407e3d9f0897752ebdbcc014ddb98dd5ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all : findoptimalconfig

SRT:=../..

LIBSURVIVE:=$(SRT)/lib/libsurvive.so

CFLAGS:=-I$(SRT)/redist -I$(SRT)/include -O0 -g -DFLT=double -DUSE_DOUBLE #-fsanitize=address -fsanitize=undefined
LDFLAGS:=-lm -lpthread -llapacke  -lcblas 

findoptimalconfig : findoptimalconfig.cc $(LIBSURVIVE) 
	g++ $(CFLAGS) -o $@ $^ $(LDFLAGS)

clean :
	rm -rf findoptimalconfig