Sherman-Morrison/independent_test_harness/Makefile.icc_mkl_sequential.cpu

17 lines
431 B
Makefile
Raw Permalink Normal View History

2022-10-10 11:01:53 +02:00
CC=icc
CFLAGS=-std=c99 -O3 -Wall -g -xCORE-AVX2
LDFLAGS=-L/usr/lib/x86_64-linux-gnu/hdf5/serial -lhdf5 -lhdf5_hl
LDFLAGS+=-L$(MKLROOT)/lib/intel64 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl
all: clean test_icc_mkl_sequential
2022-10-10 11:01:53 +02:00
test_icc_mkl_sequential: kernels.o test.o helper.o
$(CC) -o $@ $^ $(LDFLAGS)
2022-10-10 11:01:53 +02:00
%.o : %.c
$(CC) $(CFLAGS) $(INCLUDE) -c -o $@ $<
clean:
rm -rf *.o *genmod* test_icc_mkl_sequential