Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • 26-refactoring-the-infrastructure
  • MPGCQM_workshop
  • app
  • backup-05-08
  • develop
  • kappa_sigma_notebook
  • master
  • staging
8 results

Target

Select target project
  • nomad-lab/analytics
1 result
Select Git revision
  • 26-refactoring-the-infrastructure
  • MPGCQM_workshop
  • app
  • backup-05-08
  • develop
  • kappa_sigma_notebook
  • master
  • staging
8 results
Show changes
Showing
with 0 additions and 1350 deletions
# simple Makefile to run configure and then make
# using C and Fortran compiler specified in Makefile.${QUIP_ARCH}
#
# This file must be copied into src/fox before being used
# (which the main Makefile does by default)
all: foxlibs
ifndef QUIP_ARCH
$(error "You need to define the architecture using the QUIP_ARCH variable. Check out the arch/ subdirectory.")
endif
include Makefile.${QUIP_ARCH}
include Makefile.inc
include Makefile.rules
HOST_ARGS=
ifneq (${QUIP_HOST},)
HOST_ARGS="--host=${QUIP_HOST}"
endif
foxlibs:
ifeq (${QUIP_ARCH},)
@echo
@echo "You need to define the architecture using the QUIP_ARCH variable"
@echo
@exit 1
endif
if [ -e arch.make ]; then make distclean; fi && rm -rf objs.${QUIP_ARCH} && FCFLAGS="-fPIC" FC="${F95}" CC="${CC}" /bin/bash ./configure ${HOST_ARGS} --disable-dom && make && mv objs objs.${QUIP_ARCH}
This diff is collapsed.
This diff is collapsed.
# H0 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# H0 X
# H0 X libAtoms+QUIP: atomistic simulation library
# H0 X
# H0 X Portions of this code were written by
# H0 X Albert Bartok-Partay, Silvia Cereda, Gabor Csanyi, James Kermode,
# H0 X Ivan Solt, Wojciech Szlachta, Csilla Varnai, Steven Winfield.
# H0 X
# H0 X Copyright 2006-2010.
# H0 X
# H0 X These portions of the source code are released under the GNU General
# H0 X Public License, version 2, http://www.gnu.org/copyleft/gpl.html
# H0 X
# H0 X If you would like to license the source code under different terms,
# H0 X please contact Gabor Csanyi, gabor@csanyi.net
# H0 X
# H0 X Portions of this code were written by Noam Bernstein as part of
# H0 X his employment for the U.S. Government, and are not subject
# H0 X to copyright in the USA.
# H0 X
# H0 X
# H0 X When using this software, please cite the following reference:
# H0 X
# H0 X http://www.libatoms.org
# H0 X
# H0 X Additional contributions by
# H0 X Alessio Comisso, Chiara Gattinoni, and Gianpietro Moras
# H0 X
# H0 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# declarations
F77 = gfortran
F90 = gfortran
F95 = gfortran
CC = gcc
CPLUSPLUS = g++
LINKER = gfortran
FPP = gfortran -E -x f95-cpp-input
SAMPLE_DEBUG = -O0 -g -DDUMP_CORE_ON_ABORT -DDEBUG -fbounds-check
DEBUG= -g -DDUMP_CORE_ON_ABORT
OPTIM = -O3
DEFINES += -DGETARG_F2003 -DGETENV_F2003 -DGFORTRAN -DFORTRAN_UNDERSCORE
F95FLAGS += -x f95-cpp-input -ffree-line-length-none -ffree-form -fno-second-underscore -fPIC
F77FLAGS += -x f77-cpp-input -fno-second-underscore -fPIC
CFLAGS += -fPIC
CPLUSPLUSFLAGS += -fPIC
AR_ADD = src
ATOMEYE_LIBS = -L/usr/lib -Wl,-Bstatic -lm \
-lutil -Wl,-Bdynamic -lXpm -lXext -lX11 -ljpeg -lpthread -Wl,-Bstatic \
-lreadline -lpng -lncurses -lz -lnetcdf -lhdf5_hl -lhdf5 \
-llapack -lf77blas -lcblas -latlas -Wl,-Bdynamic
QUIPPY_FCOMPILER = gnu95
QUIPPY_F90FLAGS = -ffree-line-length-none
QUIPPY_DEFINES = -DGETARG_F2003 -DGETENV_F2003 -DGFORTRAN -DFORTRAN_UNDERSCORE
QUIPPY_CPP = gfortran -E -x f95-cpp-input
QUIPPY_DEBUG = 0
export DEFAULT_MATH_LINKOPTS = -L/home/shared/LAPACK/ATLAS_LIB/lib -llapack -lf77blas -lcblas -latlas
FPP_PRE_TARGET_STRING = -o
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
# declarations
F77 = ifort
F90 = ifort
F95 = ifort
CC = icc
CPLUSPLUS = icpc -Kc++
LINKER = ifort
SAMPLE_DEBUG = -g -traceback -check bounds -DDUMP_CORE_ON_ABORT
DEBUG = -g -traceback -DDUMP_CORE_ON_ABORT
OPTIM = -O3 -vec-report0 -unroll -xP -p
CDEBUG = -g -DDUMP_CORE_ON_ABORT
COPTIM = -O3
DEFINES = -DGETARG_F2003 -DFORTRAN_UNDERSCORE -DDARWIN
F95FLAGS += -fpp -free
F77FLAGS += -fixed
LINKOPTS += -nofor-main
DEFAULT_MATH_LINKOPTS = -framework Accelerate
AR_ADD = src
# rules
F95_PRE_FILENAME_FLAG = -Tf
This diff is collapsed.
This diff is collapsed.