16 lines
262 B
Makefile
16 lines
262 B
Makefile
CC = gcc
|
|
SRC = src/
|
|
CFLAGS = -march=native -mtune=native -mavx -O2 -ftree-vectorize -fopenmp
|
|
|
|
.DEFAULT_GOAL = MD.exe
|
|
|
|
MD.exe: $(SRC)/MD2.cpp
|
|
$(CC) $(CFLAGS) $(SRC)MD2.cpp -lm -o MD.exe
|
|
|
|
clean:
|
|
rm ./MD.exe
|
|
|
|
run:
|
|
./MD.exe < inputdata.txt
|
|
|
|
runfull: clean MD run
|