summaryrefslogtreecommitdiffstats
path: root/vms
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2006-03-09 21:36:44 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2006-03-09 21:36:44 (GMT)
commite3937a8b075ef7429094f05a23d80716d853f80a (patch)
tree76f68de591bffb26a0c2db6d1fb9c94bbf424bdd /vms
parent936a6a09ed1aafe7faabb58e2d3b213e17c4dbcf (diff)
downloadhdf5-e3937a8b075ef7429094f05a23d80716d853f80a.zip
hdf5-e3937a8b075ef7429094f05a23d80716d853f80a.tar.gz
hdf5-e3937a8b075ef7429094f05a23d80716d853f80a.tar.bz2
[svn-r12062] Purpose: VMS port
Description: added command file to build Fortran library Solution: Platforms tested: VMS server Misc. update:
Diffstat (limited to 'vms')
-rw-r--r--vms/fortran/src/make.com67
1 files changed, 67 insertions, 0 deletions
diff --git a/vms/fortran/src/make.com b/vms/fortran/src/make.com
new file mode 100644
index 0000000..bb15691
--- /dev/null
+++ b/vms/fortran/src/make.com
@@ -0,0 +1,67 @@
+$!#
+$!# Copyright by the Board of Trustees of the University of Illinois.
+$!# All rights reserved.
+$!#
+$!# This file is part of HDF5. The full HDF5 copyright notice, including
+$!# terms governing use, modification, and redistribution, is contained in
+$!# the files COPYING and Copyright.html. COPYING can be found at the root
+$!# of the source code distribution tree; Copyright.html can be found at the
+$!# root level of an installed copy of the electronic HDF5 document set and
+$!# is linked from the top-level documents page. It can also be found at
+$!# http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have
+$!# access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu.
+$!#
+$! Makefile for VMS systems.
+$!
+$! Make HDF5 Fortran library
+$!
+$ ccopt = "/float=ieee_float"
+$ fcopt = "/float=ieee_float"
+$ ccc := cc 'ccopt /debug/define=H5_VMS/nooptimize/include=[-.-.src]
+$ fff := fortran 'fcopt /debug/define=H5_VMS/nooptimize
+$ type sys$input
+ Creating and running H5test_kind to generate H5fortran_detect.f90
+$!
+$ fff H5test_kind.f90
+$ link H5test_kind
+$ define/user_mode sys$output H5fortran_detect.f90
+$ run H5test_kind
+$!
+$ type sys$input
+ Creating and running H5fortran_detect.f90 to generate H5fort_type_defines.h
+$
+$ fff H5fortran_detect.f90
+$ link H5fortran_detect
+$ define/user_mode sys$output H5fort_type_defines.h
+$ run H5fortran_detect
+$!
+$ type sys$input
+ Creating and running H5match_types to generate H5fortran_types.f90
+$!
+$ ccc H5match_types.c
+$ link H5match_types
+$ run H5match_types
+$
+$
+$ type sys$input
+ Creating HDF5 Fortran library
+$!
+$ cobj="H5f90kit, H5_f, H5Af, H5Df, H5Ef, H5Ff, H5Gf, "+-
+ "H5If, H5Pf, H5Rf, H5Sf, H5Tf, H5Zf"
+$ ffiles="H5fortran_flags.f90, H5f90global.f90, "+-
+ "H5fortran_types.f90, H5_ff.f90, H5Aff.f90, H5Dff.f90, H5Eff.f90,"+-
+ "H5Fff.f90, H5Gff.f90, H5Iff.f90, H5Pff.f90, H5Rff.f90, H5Sff.f90,"+-
+ "H5Tff.f90, H5Zff.f90, HDF5.f90"
+$ fobj="H5fortran_flags, H5f90global, "+-
+ "H5fortran_types, H5_ff, H5Aff, H5Dff, H5Eff,"+-
+ "H5Fff, H5Gff, H5Iff, H5Pff, H5Rff, H5Sff,"+-
+ "H5Tff, H5Zff, HDF5"
+
+$!
+$ ccc 'cobj
+$ fff 'ffiles
+$ library/create []hdf5_fortran 'cobj
+$ library/replace []hdf5_fortran 'fobj
+$ type sys$input
+ Created HDF5 Fortran library
+$!