diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2003-04-03 20:10:25 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2003-04-03 20:10:25 (GMT) |
commit | 78c2c38d986aace5ea06cc8cfeafd155374f1b98 (patch) | |
tree | cce80472ded9da77bca9e62ae05e562f6a3327b2 /tools/misc/Makefile.in | |
parent | 1d76391f63d43242f47fc487bfcdca1cf2299858 (diff) | |
download | hdf5-78c2c38d986aace5ea06cc8cfeafd155374f1b98.zip hdf5-78c2c38d986aace5ea06cc8cfeafd155374f1b98.tar.gz hdf5-78c2c38d986aace5ea06cc8cfeafd155374f1b98.tar.bz2 |
[svn-r6584]
Purpose: Maintenance
Description: There was an old h5import (h5import.c) tool in the misc directory.
The tool created 8-bit integer datasets , it was never tested and/or
supported.
Solution: We decided to rename old h5import.c to h5createU8.c. The new name reflects what
actually old tool does. New executable h5createU8 is built in the misc directory.
h5import.c file (old one) is still in the misc directory, but h5import executable
is not built. (Sorry if I confused you!)
Platforms tested: vebena, arabica, modi4 were tested
Misc. update:
Diffstat (limited to 'tools/misc/Makefile.in')
-rw-r--r-- | tools/misc/Makefile.in | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/tools/misc/Makefile.in b/tools/misc/Makefile.in index 6b228b9..5ea8aaa 100644 --- a/tools/misc/Makefile.in +++ b/tools/misc/Makefile.in @@ -1,17 +1,9 @@ ## HDF5 Library Makefile(.in) ## -## 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. +## Copyright (C) 2001 National Center for Supercomputing Applications. +## All rights reserved. ## +## top_srcdir=@top_srcdir@ top_builddir=../.. srcdir=@srcdir@ @@ -34,7 +26,7 @@ TEST_SCRIPTS= LIBTOOLS=../lib/libh5tools.la LIBHDF5=$(top_builddir)/src/libhdf5.la -PUB_PROGS=h5cc h5debug h5import h5redeploy h5repart @PDB2HDF@ +PUB_PROGS=h5cc h5debug h5createU8 h5redeploy h5repart @PDB2HDF@ PROGS=$(PUB_PROGS) $(TEST_PROGS) ## Source and object files for the library; do not install @@ -45,7 +37,7 @@ PUB_LIB= ## Source and object files for programs... ## -PROG_SRC=h5debug.c h5import.c h5repart.c pdb2hdf.c +PROG_SRC=h5debug.c h5createU8.c h5repart.c pdb2hdf.c PROG_OBJ=$(PROG_SRC:.c=.lo) PRIVATE_HDR= @@ -70,8 +62,8 @@ h5cc: h5cc.in h5debug: h5debug.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5debug.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) -h5import: h5import.lo - @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5import.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) +h5createU8: h5createU8.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5createU8.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) h5redeploy: h5redeploy.in $(CP) $(srcdir)/$@.in $@ |