diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-06-07 21:06:10 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-06-07 21:06:10 (GMT) |
commit | c8721abdbc0b92277611bc97f9ed4d843d93d4f9 (patch) | |
tree | 24b30e20cf603b0c7b9b900b1aec8770af0d19b2 /perform/Makefile.in | |
parent | ff3f6f1a677a780a425ac8b0ab1c45eca92b6ca0 (diff) | |
download | hdf5-c8721abdbc0b92277611bc97f9ed4d843d93d4f9.zip hdf5-c8721abdbc0b92277611bc97f9ed4d843d93d4f9.tar.gz hdf5-c8721abdbc0b92277611bc97f9ed4d843d93d4f9.tar.bz2 |
[svn-r5554] Purpose:
Compress I/O Test Add
Description:
This is the initial check-in of the compress I/O test. It will write
out compressed buffers to a file.
I need to implement a write of uncompressed data first for
comparison...
Platforms tested:
Linux
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 46e7621..09f9086 100644 --- a/perform/Makefile.in +++ b/perform/Makefile.in @@ -20,7 +20,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=pio_perf -TEST_PROGS=iopipe chunk overhead +TEST_PROGS=iopipe chunk overhead zip_perf ## These are the files that `make clean' (and derivatives) will remove from ## this directory. @@ -34,7 +34,7 @@ PIO_PERF_OBJ=$(PIO_PERF_SRC:.c=.lo) TEST_SRC_PARA=$(PIO_PERF_SRC) -TEST_SRC=iopipe.c chunk.c overhead.c $(TEST_SRC_PARA) +TEST_SRC=iopipe.c chunk.c overhead.c zip_perf.c $(TEST_SRC_PARA) TEST_OBJ=$(TEST_SRC:.c=.lo) ## How to build the programs... they all depend on the hdf5 library @@ -61,4 +61,8 @@ chunk: chunk.lo overhead: overhead.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ overhead.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) +zip_perf: zip_perf.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ zip_perf.lo $(LIBH5TEST) \ + $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) + @CONCLUDE@ |