aboutsummaryrefslogtreecommitdiff
path: root/tools/findoptimalconfig/Makefile
blob: f174812c0ffe7339f3b103ebd83d66fdb87af116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)
	cd ../..;make
	g++ $(CFLAGS) -o $@ $^ $(LDFLAGS)

clean :
	rm -rf findoptimalconfig