nixos/local/pkgs/vasp/gnu/makefile.include

84 lines
2.2 KiB
Plaintext
Raw Normal View History

2023-09-04 19:26:33 +08:00
# Default precompiler options
CPP_OPTIONS = -DHOST=\"LinuxGNU\" \
-DMPI -DMPI_BLOCK=8000 -Duse_collective \
-DscaLAPACK \
-DCACHE_SIZE=4000 \
-Davoidalloc \
-Dvasp6 \
-Duse_bse_te \
-Dtbdyn \
-Dfock_dblbuf \
2024-02-25 15:34:35 +08:00
-D_OPENMP -Duse_shmem -Dshmem_bcast_buffer -Dshmem_rproj
2023-09-04 19:26:33 +08:00
CPP = gcc -E -C -w $*$(FUFFIX) >$*$(SUFFIX) $(CPP_OPTIONS)
FC = mpif90 -fopenmp
FCL = mpif90 -fopenmp
FREE = -ffree-form -ffree-line-length-none
FFLAGS = -w -ffpe-summary=none
2024-02-24 22:39:48 +08:00
OFLAG = -O2
2023-09-04 19:26:33 +08:00
OFLAG_IN = $(OFLAG)
DEBUG = -O0
OBJECTS = fftmpiw.o fftmpi_map.o fftw3d.o fft3dlib.o
OBJECTS_O1 += fftw3d.o fftmpi.o fftmpiw.o
OBJECTS_O2 += fft3dlib.o
# For what used to be vasp.5.lib
CPP_LIB = $(CPP)
FC_LIB = $(FC)
CC_LIB = gcc
CFLAGS_LIB = -O
FFLAGS_LIB = -O1
FREE_LIB = $(FREE)
2024-02-25 15:34:35 +08:00
OBJECTS_LIB = linpack_double.o getshmem.o
2023-09-04 19:26:33 +08:00
# For the parser library
CXX_PARS = g++
LLIBS = -lstdc++
##
## Customize as of this point! Of course you may change the preceding
## part of this file as well if you like, but it should rarely be
## necessary ...
##
# When compiling on the target machine itself, change this to the
# relevant target when cross-compiling for another architecture
# For gcc-10 and higher (comment out for older versions)
FFLAGS += -fallow-argument-mismatch
# BLAS and LAPACK (mandatory)
BLASPACK = -lblas
# scaLAPACK (mandatory)
SCALAPACK = -lscalapack
LLIBS += $(SCALAPACK) $(BLASPACK)
# FFTW (mandatory)
2024-02-24 22:39:48 +08:00
LLIBS += -L$(FFTW_ROOT)/lib -lfftw3 -lfftw3_omp
2023-09-04 19:26:33 +08:00
INCS += -I$(FFTW_ROOT)/include
# HDF5-support (optional but strongly recommended)
2024-02-25 15:34:35 +08:00
CPP_OPTIONS+= -DVASP_HDF5
LLIBS += -L$(HDF5_ROOT)/lib -lhdf5_fortran
INCS += -I$(HDF5_ROOT)/include
2023-09-04 19:26:33 +08:00
# For the VASP-2-Wannier90 interface (optional)
2024-02-25 15:34:35 +08:00
CPP_OPTIONS += -DVASP2WANNIER90
2024-03-10 14:01:32 +08:00
LLIBS += -L$(WANNIER90_ROOT)/lib -lwannier
2023-09-04 19:26:33 +08:00
# For the fftlib library (recommended)
CPP_OPTIONS+= -Dsysv
FCL += fftlib.o
CXX_FFTLIB = g++ -fopenmp -std=c++11 -DFFTLIB_THREADSAFE
INCS_FFTLIB = -I./include -I$(FFTW_ROOT)/include
LIBS += fftlib
LLIBS += -ldl