mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-12-26 06:15:08 +01:00
f7dbe3ddd8
- OpenMP version - PP defines cleanup
17 lines
431 B
Makefile
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
|