diff options
author | Barbara Jones <bljones@hdfgroup.org> | 2001-03-19 14:15:37 (GMT) |
---|---|---|
committer | Barbara Jones <bljones@hdfgroup.org> | 2001-03-19 14:15:37 (GMT) |
commit | 380eb42bc58977ac27668bac2b0b9fac7eb90270 (patch) | |
tree | 39f3c0d912b88c532cb420974731d2b1a75ec4bf | |
parent | a30241435df4c12d40ea654c5c9721fa733d2c44 (diff) | |
download | hdf5-380eb42bc58977ac27668bac2b0b9fac7eb90270.zip hdf5-380eb42bc58977ac27668bac2b0b9fac7eb90270.tar.gz hdf5-380eb42bc58977ac27668bac2b0b9fac7eb90270.tar.bz2 |
[svn-r3657] Description:
Added Fortran 90 examples
-rw-r--r-- | doc/html/Tutor/examples/java/Makefile.in | 103 |
1 files changed, 86 insertions, 17 deletions
diff --git a/doc/html/Tutor/examples/java/Makefile.in b/doc/html/Tutor/examples/java/Makefile.in index 30d67e2..e6bd408 100644 --- a/doc/html/Tutor/examples/java/Makefile.in +++ b/doc/html/Tutor/examples/java/Makefile.in @@ -1,22 +1,91 @@ -# HDF5 Library Makefile(.in) -# -# Copyright (C) 2001 National Center for Supercomputing Applications. -# All rights reserved. -# +# /*======================================================================= +# UNIVERSITY OF ILLINOIS (UI), NATIONAL CENTER FOR SUPERCOMPUTING +# APPLICATIONS (NCSA), Software Distribution Policy for Public Domain +# Software # -top_srcdir=@top_srcdir@ -top_builddir=../../../../.. -srcdir=@srcdir@ -@COMMENCE@ +# NCSA HDF Version 5 source code and documentation are in the public +# domain, available without fee for education, research, non-commercial and +# commercial purposes. Users may distribute the binary or source code to +# third parties provided that this statement appears on all copies and that +# no charge is made for such copies. +# +# UI MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THE SOFTWARE FOR ANY +# PURPOSE. IT IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY. THE +# UI SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY THE USER OF THIS +# SOFTWARE. The software may have been developed under agreements between +# the UI and the Federal Government which entitle the Government to certain +# rights. +# +# We ask, but do not require that the following message be include in all +# derived works: +# +# Portions developed at the National Center for Supercomputing Applications +# at the University of Illinois at Urbana-Champaign. +# +# By copying this program, you, the user, agree to abide by the conditions +# and understandings with respect to any software which is marked with a +# public domain notice. +# +# =======================================================================*/ +# + + +JAVAC = @JAVAC@ +FIND = @FIND@ + +CLASSPATH=@CLASSPATH@ + + +.SUFFIXES: .java .class + +.java.class: + $(JAVAC) -classpath $(CLASSPATH) $< + +tutorial: ./Compound.class \ + ./Copy.class \ + ./CreateAttribute.class \ + ./CreateDataset.class \ + ./CreateFile.class \ + ./CreateFileInput.class \ + ./CreateGroup.class \ + ./CreateGroupAR.class \ + ./CreateGroupDataset.class \ + ./DatasetRdWt.class \ + ./HyperSlab.class + chmod u+x *.sh + +clean: clean-classes + +distclean: clean-classes clean-data + rm config.cache config.status config.log + rm -rf ./Makefile -# Subdirectories in build-order (not including `examples') -SUBDIRS= -DOCDIR=$(docdir)/hdf5/Tutor/examples +clean-classes: + $(FIND) . \( -name '#*' -o -name '*~' -o -name '*.class' \) -exec rm -f {} \; ;\ -# Public doc files (to be installed)... -PUB_DOCS= +clean-data: + rm -rf *.h5 -# Other doc files (not to be installed)... -PRIVATE_DOCS= +Compound: ./Compound.class +Copy: ./Copy.class +CreateAttribute: ./CreateAttribute.class +CreateDataset: ./CreateDataset.class +CreateFile: ./CreateFile.class +CreateFileInput: ./CreateFileInput.class +CreateGroup: ./CreateGroup.class +CreateGroupAR: ./CreateGroupAR.class +CreateGroupDataset: ./CreateGroupDataset.class +DatasetRdWt: ./DatasetRdWt.class +HyperSlab: ./HyperSlab.class -@CONCLUDE@ +CLASSES= ./Compound.class \ + ./Copy.class \ + ./CreateAttribute.class \ + ./CreateDataset.class \ + ./CreateFileInput.class \ + ./CreateFile.class \ + ./CreateGroup.class \ + ./CreateGroupAR.class \ + ./CreateGroupDataset.class \ + ./DatasetRdWt.class \ + ./HyperSlab.class |