diff options
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index aab4e6c..37a01ac 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -12,10 +12,10 @@ 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 gheap hyperslab istore dtypes dsets cmpd_dset extend external \ - shtype iopipe big links + shtype iopipe big links chunk TESTS=testhdf5 gheap hyperslab istore dtypes dsets cmpd_dset extend external \ shtype links -TIMINGS=iopipe +TIMINGS=iopipe chunk # Temporary files MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \ @@ -24,15 +24,15 @@ MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \ extern_2.raw extern_2b.raw extern_3.raw extern_3b.raw \ extern_4.raw extern_4b.raw iopipe.raw iopipe.h5 gheap0.h5 \ gheap1.h5 gheap2.h5 gheap3.h5 gheap4.h5 shtype0.h5 shtype1.h5 \ - shtype2a.h5 shtype2b.h5 shtype3.h5 links.h5 + shtype2a.h5 shtype2b.h5 shtype3.h5 links.h5 chunk.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 tattr.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5s.c \ - dtypes.c hyperslab.c istore.c dsets.c cmpd_dset.c extend.c external.c \ - iopipe.c gheap.c shtype.c big.c links.c + dtypes.c hyperslab.c istore.c dsets.c cmpd_dset.c extend.c external.c \ + iopipe.c gheap.c shtype.c big.c links.c chunk.c PROG_OBJ=$(PROG_SRC:.c=.o) TESTHDF5_SRC=testhdf5.c tattr.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5s.c @@ -77,6 +77,9 @@ BIG_OBJ=$(BIG_SRC:.c=.o) LINKS_SRC=links.c LINKS_OBJ=$(LINKS_SRC:.c=.o) +CHUNK_SRC=chunk.c +CHUNK_OBJ=$(CHUNK_SRC:.c=.o) + # Private header files (not to be installed)... PRIVATE_HDR=testhdf5.h @@ -133,4 +136,7 @@ big: $(BIG_OBJ) ../src/libhdf5.a links: $(LINKS_OBJ) ../src/libhdf5.a $(CC) $(CFLAGS) -o $@ $(LINKS_OBJ) ../src/libhdf5.a $(LIBS) +chunk: $(CHUNK_OBJ) ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ $(CHUNK_OBJ) ../src/libhdf5.a $(LIBS) + @CONCLUDE@ |