[svn-r12248] Purpose: Maintenance

Description: cleaned up make.com file

Solution:

Platforms tested: VMS server

Misc. update:
This commit is contained in:
Elena Pourmal 2006-04-14 16:30:21 -05:00
parent 754e92f9a9
commit 449af61402
2 changed files with 14 additions and 16 deletions

View File

@ -15,10 +15,10 @@ $! 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
$! ccopt = "/float=ieee_float/define=H5_VMS"
$! fcopt = "/float=ieee_float/define=H5_VMS"
$ ccc := cc 'ccopt /include=[-.-.src]
$ fff := fortran 'fcopt
$ type sys$input
Creating and running H5test_kind to generate H5fortran_detect.f90
$!
@ -29,7 +29,7 @@ $ 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
@ -41,8 +41,8 @@ $!
$ ccc H5match_types.c
$ link H5match_types
$ run H5match_types
$
$
$!
$!
$ type sys$input
Creating HDF5 Fortran library
$!
@ -56,12 +56,11 @@ $ 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
$!
Done
$ exit

View File

@ -15,9 +15,9 @@ $! Makefile for VMS systems.
$!
$! Make HDF5 library
$!
$ ccopt = "/float=ieee_float"
$ ccc := cc 'ccopt /debug/define=H5_VMS/nooptimize
$ cc/float=ieee_float h5detect.c
$! ccopt = "/float=ieee_float/define=H5_VMS"
$ ccc := cc 'ccopt
$ ccc h5detect.c
$ link h5detect
$ type sys$input
Running h5detect to create h5tinit.c
@ -25,7 +25,7 @@ $ define/user_mode sys$output h5tinit.c
$ run h5detect
$
$ type sys$input
Creating HDF5 library
Creating HDF5 library
$!
$ cobj= "H5, H5A, H5AC, H5B, H5B2, H5B2cache,"+-
"H5Bcache, H5B2dbg, H5B2test, H5B2int, H5B2stat, H5C,"+-
@ -54,12 +54,11 @@ $ cobj1= "H5R, H5RC,"+-
"H5Tpad, H5Tprecis, H5Tstrpad, H5Tvlen, H5TS, H5V, H5Z,"+-
"H5Zdeflate, H5Zfletcher32, H5Znbit, H5Zshuffle, H5Zszip,"+-
"H5Zscaleoffset, H5Ztrans"
$!
$ ccc 'cobj
$ ccc 'cobj1
$ library/create []hdf5
$ library/insert []hdf5 'cobj, 'cobj1
$ type sys$input
HDF5 library was created
Done
$!