Initial checkin of simplified miniMD port. Does not work yet.

This commit is contained in:
Jan Eitzinger
2020-08-11 16:34:22 +02:00
parent 0f4be2a9eb
commit ff45b07749
9 changed files with 1288 additions and 0 deletions

21
include_GCC.mk Normal file
View File

@@ -0,0 +1,21 @@
CC = gcc
CXX = g++
FC = gfortran
LINKER = $(CXX)
ANSI_CFLAGS = -ansi
ANSI_CFLAGS += -std=c99
ANSI_CFLAGS += -pedantic
ANSI_CFLAGS += -Wextra
# CFLAGS = -O0 -g -std=c99 -fargument-noalias
CFLAGS = -O3 -march=znver1 -ffast-math -funroll-loops -fopenmp
CXXFLAGS = $(CFLAGS)
ASFLAGS = -masm=intel
FCFLAGS =
LFLAGS =
DEFINES = -D_GNU_SOURCE
INCLUDES =
LIBS =