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