:78 Function create_function() is deprecated [8192]

Create Makefile for IBM XL fortran 2003 compiler. Debug and serial options.

Bruno Mundim [2017-01-02 20:51:35]
Create Makefile for IBM XL fortran 2003 compiler. Debug and serial options.
Filename
src/makefiles/Makefile.xlf2003_serial_O0
diff --git a/src/makefiles/Makefile.xlf2003_serial_O0 b/src/makefiles/Makefile.xlf2003_serial_O0
new file mode 100644
index 0000000..c9e5f2a
--- /dev/null
+++ b/src/makefiles/Makefile.xlf2003_serial_O0
@@ -0,0 +1,45 @@
+#-*- mode: makefile -*-
+#-----------------------------------------------------------------------
+#                  IBM Fortran Compiler (serial)
+#-----------------------------------------------------------------------
+#+ This file is part of the AENET package.
+#+
+#+ Copyright (C) 2012-2016 Nongnuch Artrith and Alexander Urban
+#+
+#+ This program is free software: you can redistribute it and/or modify
+#+ it under the terms of the GNU General Public License as published by
+#+ the Free Software Foundation, either version 3 of the License, or
+#+ (at your option) any later version.
+#+
+#+ This program is distributed in the hope that it will be useful, but
+#+ WITHOUT ANY WARRANTY; without even the implied warranty of
+#+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#+ General Public License for more details.
+#+
+#+ You should have received a copy of the GNU General Public License
+#+ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#-----------------------------------------------------------------------
+# 2015-05-26 Alexander Urban (AU) and Nongnuch Artrith (NA)
+#-----------------------------------------------------------------------
+
+SUFFIX   = xlf2003_serial_debug
+
+FC       = xlf2003_r -c
+LD       = xlf2003_r
+DEBUG    = # -g -warn all -check bounds
+FCFLAGS  = -O0 -g -q64 -qarch=pwr7 -qtune=pwr7 $(DEBUG)
+LDFLAGS  = $(DEBUG)
+NUMLIB   = -L$(SCINET_LAPACK_LIB) -q64 -lessl -llapack -lrefblas
+
+CC       = xlc_r -c
+CCFLAGS  =
+
+# linker for C-interoperable library (gcc & gfortran)
+LIBLD    = xlc_r
+LIBFLAGS = -qmkshrobj
+LIBLIB   =
+
+AR       = ar
+ARFLAGS  = -crusv
+
+include ./Makefile.inc
ViewGit