diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2003-10-14 22:04:03 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2003-10-14 22:04:03 (GMT) |
commit | a1aa262020f230c88c7b188de87119f6ff72f1a8 (patch) | |
tree | 9c08f8e3ad974fefcd2fddf2be48e6e0f2ae6afc /perform/Makefile.in | |
parent | e2518919c959dbf1bdb0890151cae91293e0594d (diff) | |
download | hdf5-a1aa262020f230c88c7b188de87119f6ff72f1a8.zip hdf5-a1aa262020f230c88c7b188de87119f6ff72f1a8.tar.gz hdf5-a1aa262020f230c88c7b188de87119f6ff72f1a8.tar.bz2 |
[svn-r7629] Purpose: add a new performance program
Description: This program test performance of create or open datasets and create
attributes for datasets.
Platforms tested: h5committest
Misc. update: MANIFEST
Diffstat (limited to 'perform/Makefile.in')
-rw-r--r-- | perform/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/perform/Makefile.in b/perform/Makefile.in index 90bb22c..7228919 100644 --- a/perform/Makefile.in +++ b/perform/Makefile.in @@ -29,7 +29,7 @@ LIBTOOLS=../tools/lib/libh5tools.la ## These are the programs that `make all' or `make tests' will build and which ## `make check' will run. List them in the order they should be run. TEST_PROGS_PARA=h5perf -TEST_PROGS=iopipe chunk overhead zip_perf +TEST_PROGS=iopipe chunk overhead zip_perf perf_meta PUB_PROGS=h5perf @@ -45,7 +45,7 @@ PIO_PERF_OBJ=$(PIO_PERF_SRC:.c=.lo) TEST_SRC_PARA=$(PIO_PERF_SRC) -TEST_SRC=iopipe.c chunk.c overhead.c zip_perf.c $(TEST_SRC_PARA) +TEST_SRC=iopipe.c chunk.c overhead.c zip_perf.c perf_meta.c $(TEST_SRC_PARA) TEST_OBJ=$(TEST_SRC:.c=.lo) ## How to build the programs... they all depend on the hdf5 library @@ -76,4 +76,8 @@ zip_perf: zip_perf.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ zip_perf.lo $(LIBH5TEST) \ $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) +perf_meta: perf_meta.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ perf_meta.lo $(LIBH5TEST) $(LIBHDF5) \ + $(LDFLAGS) $(LIBS) + @CONCLUDE@ |