MDS/Makefile

17 lines
262 B
Makefile
Raw Normal View History

CC = gcc
SRC = src/
2023-11-26 15:17:10 +00:00
CFLAGS = -march=native -mtune=native -mavx -O2 -ftree-vectorize -fopenmp
2023-10-22 16:06:13 +01:00
.DEFAULT_GOAL = MD.exe
2023-11-26 15:17:10 +00:00
MD.exe: $(SRC)/MD2.cpp
$(CC) $(CFLAGS) $(SRC)MD2.cpp -lm -o MD.exe
clean:
2023-10-22 16:06:13 +01:00
rm ./MD.exe
run:
2023-10-22 16:06:13 +01:00
./MD.exe < inputdata.txt
runfull: clean MD run