2005-02-01 11:17:02 +08:00
|
|
|
#
|
2007-02-08 06:28:58 +08:00
|
|
|
# Copyright by The HDF Group.
|
2005-02-01 11:17:02 +08:00
|
|
|
# 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
|
2007-02-08 06:28:58 +08:00
|
|
|
# http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
|
|
|
|
# access to either file, you may request a copy from help@hdfgroup.org.
|
2005-02-01 11:17:02 +08:00
|
|
|
##
|
|
|
|
## Makefile.am
|
|
|
|
## Run automake to generate a Makefile.in from this file.
|
|
|
|
#
|
|
|
|
# HDF5 Library Makefile(.in)
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/commence.am
|
|
|
|
|
|
|
|
# Include src, test, and tools/lib directories
|
2006-06-22 07:15:08 +08:00
|
|
|
INCLUDES=-I$(top_srcdir)/src -I$(top_srcdir)/test -I$(top_srcdir)/tools/lib
|
2005-02-01 11:17:02 +08:00
|
|
|
|
|
|
|
# Test programs and scripts
|
|
|
|
TEST_SCRIPT=h5repack.sh
|
|
|
|
TEST_PROG=h5repacktst
|
|
|
|
noinst_PROGRAMS=testh5repack_detect_szip
|
|
|
|
|
|
|
|
check_SCRIPTS=$(TEST_SCRIPT)
|
|
|
|
check_PROGRAMS=$(TEST_PROG)
|
|
|
|
|
2005-08-31 07:42:39 +08:00
|
|
|
SCRIPT_DEPEND=h5repack$(EXEEXT)
|
|
|
|
|
2005-02-01 11:17:02 +08:00
|
|
|
# Our main target, h5repack tool
|
|
|
|
bin_PROGRAMS=h5repack
|
|
|
|
|
2006-10-21 02:45:17 +08:00
|
|
|
# Depend on the hdf5 library, the tools library, the test library
|
|
|
|
LDADD=$(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5)
|
2005-02-01 11:17:02 +08:00
|
|
|
|
|
|
|
# Source files
|
[svn-r14193] Description:
Make H5Dopen versioned and change all internal usage to use H5Dopen2
Add simple regression test for H5Dopen1
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-09 03:59:36 +08:00
|
|
|
COMMON_SOURCES=h5repack.c h5repack_copy.c h5repack_filters.c \
|
2007-11-29 04:30:43 +08:00
|
|
|
h5repack_opttable.c h5repack_parse.c h5repack_refs.c \
|
|
|
|
h5repack_verify.c
|
2005-02-01 11:17:02 +08:00
|
|
|
|
|
|
|
h5repack_SOURCES=$(COMMON_SOURCES) h5repack_main.c
|
|
|
|
|
2006-11-16 03:56:44 +08:00
|
|
|
h5repacktst_SOURCES=$(COMMON_SOURCES) h5repacktst.c
|
2005-02-01 11:17:02 +08:00
|
|
|
|
|
|
|
testh5repack_detect_szip_SOURCES=testh5repack_detect_szip.c
|
|
|
|
|
|
|
|
# Temporary files. *.h5 are generated by h5repack. They should
|
|
|
|
# copied to the testfiles/ directory if update is required.
|
2007-05-23 03:35:24 +08:00
|
|
|
CHECK_CLEANFILES+=*.h5 *.bin
|
2005-02-01 11:17:02 +08:00
|
|
|
DISTCLEANFILES=h5repack.sh
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/conclude.am
|