Sherman-Morrison/independent_test_harness/Makefile.icc_mkl_sequential.cpu
Francois Coppens f7dbe3ddd8 - Sync and Async version
- OpenMP version
- PP defines cleanup
2022-11-08 15:35:25 +01:00

17 lines
431 B
Makefile

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
test_icc_mkl_sequential: kernels.o test.o helper.o
$(CC) -o $@ $^ $(LDFLAGS)
%.o : %.c
$(CC) $(CFLAGS) $(INCLUDE) -c -o $@ $<
clean:
rm -rf *.o *genmod* test_icc_mkl_sequential