mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
374e5ae39b
---------------------- ./INSTALL Added instructions for which C flags to set for debugging. ./src/H5C.c ./src/H5Cpublic.h H5Cset_chunk() takes const pointer. ./src/H5D.c ./src/H5Dprivate.h ./src/H5Dpublic.h Added H5Dextend() to extend the dimensions of a dataset. ./src/H5Osdspace.c ./src/H5P.c ./src/H5Pprivate.h ./src/H5Ppublic.h ./test/cmpd_dset.c ./test/dsets.c ./test/th5p.c Added the optional `maxdims' argument to H5Pcreate_simple() and defined constant H5P_UNLIMITED which can appear in the maxdims. Added `const' to arguments. Implemented H5Pcopy() Removed the unused file argument from H5P_modify. Added H5P_extend(). Removed the `flags' field from simple data types and we determine if the `max' or `perm' arrays are valid by looking at the pointer. Cleaned up the H5O_sdspace_debug output. ./src/H5T.c Fixed a printf format. ./MANIFEST ./test/Makefile.in ./test/extend.c [NEW] Added a test for multi-dimensional unlimited dimensions.
76 lines
2.3 KiB
Makefile
76 lines
2.3 KiB
Makefile
# HDF5 Library Test Makefile(.in) -*- makefile -*-
|
|
#
|
|
# Copyright (C) 1997 National Center for Supercomputing Applications.
|
|
# All rights reserved.
|
|
#
|
|
#
|
|
@COMMENCE@
|
|
|
|
# Add include directory to the C preprocessor flags.
|
|
CPPFLAGS=-I. -I../src @CPPFLAGS@
|
|
|
|
# These are our main targets. They should be listed in the order to be
|
|
# executed, generally most specific tests to least specific tests.
|
|
PROGS=testhdf5 hyperslab istore dtypes dsets cmpd_dset extend
|
|
TESTS=$(PROGS)
|
|
|
|
# Temporary files
|
|
MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \
|
|
tfile3.h5 th5p1.h5 theap.h5 tohdr.h5 tstab1.h5 tstab2.h5
|
|
|
|
# Source and object files for programs... The PROG_SRC list contains all the
|
|
# source files and is used for things like dependencies, archiving, etc. The
|
|
# other source lists are for the individual tests, the files of which may
|
|
# overlap with other tests.
|
|
PROG_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5p.c dtypes.c \
|
|
hyperslab.c istore.c dsets.c cmpd_dset.c extend.c
|
|
PROG_OBJ=$(PROG_SRC:.c=.o)
|
|
|
|
TESTHDF5_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5p.c
|
|
TESTHDF5_OBJ=$(TESTHDF5_SRC:.c=.o)
|
|
|
|
DSETS_SRC=dsets.c
|
|
DSETS_OBJ=$(DSETS_SRC:.c=.o)
|
|
|
|
DTYPES_SRC=dtypes.c
|
|
DTYPES_OBJ=$(DTYPES_SRC:.c=.o)
|
|
|
|
HYPERSLAB_SRC=hyperslab.c
|
|
HYPERSLAB_OBJ=$(HYPERSLAB_SRC:.c=.o)
|
|
|
|
ISTORE_SRC=istore.c
|
|
ISTORE_OBJ=$(ISTORE_SRC:.c=.o)
|
|
|
|
CMPD_DSET_SRC=cmpd_dset.c
|
|
CMPD_DSET_OBJ=$(CMPD_DSET_SRC:.c=.o)
|
|
|
|
EXTEND_SRC=extend.c
|
|
EXTEND_OBJ=$(EXTEND_SRC:.c=.o)
|
|
|
|
# Private header files (not to be installed)...
|
|
PRIVATE_HDR=testhdf5.h
|
|
|
|
# How to build the programs...
|
|
testhdf5: $(TESTHDF5_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(TESTHDF5_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
dsets: $(DSETS_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(DSETS_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
dtypes: $(DTYPES_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(DTYPES_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
hyperslab: $(HYPERSLAB_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(HYPERSLAB_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
istore: $(ISTORE_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(ISTORE_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
cmpd_dset: $(CMPD_DSET_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(CMPD_DSET_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
extend: $(EXTEND_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(EXTEND_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
@CONCLUDE@
|