diff options
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 8881e0e..a7c66a4 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -15,7 +15,7 @@ LIBS=libh5test.a ../src/libhdf5.a @LIBS@ # executed, generally most specific tests to least specific tests. TEST_PROGS=testhdf5 lheap ohdr stab gheap hyperslab istore bittests dtypes \ dsets cmpd_dset extend external links unlink big mtime fillval mount \ - flush1 flush2 + flush1 flush2 enum TIMINGS=iopipe chunk ragged overhead # The libh5test.a library provides common support code for the tests. @@ -36,7 +36,8 @@ MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \ gheap1.h5 gheap2.h5 gheap3.h5 gheap4.h5 links.h5 chunk.h5 \ big.data big[0-9][0-9][0-9][0-9][0-9].h5 dtypes1.h5 dtypes2.h5 \ tattr.h5 tselect.h5 mtime.h5 ragged.h5 unlink.h5 overhead.h5 \ - fillval_[0-9].h5 fillval.raw mount_[0-9].h5 trefer.h5 flush.h5 + fillval_[0-9].h5 fillval.raw mount_[0-9].h5 trefer.h5 flush.h5 \ + enum1.h5 CLEAN=$(TIMINGS) # Source and object files for programs... The TEST_SRC list contains all the @@ -46,8 +47,8 @@ CLEAN=$(TIMINGS) TEST_SRC=big.c bittests.c chunk.c cmpd_dset.c dsets.c dtypes.c extend.c \ external.c fillval.c flush1.c flush2.c gheap.c h5test.c hyperslab.c \ iopipe.c istore.c lheap.c links.c mount.c mtime.c ohdr.c overhead.c \ - ragged.c space_overflow.c stab.c tattr.c testhdf5.c tfile.c th5s.c \ - tmeta.c trefer.c tselect.c unlink.c + ragged.c stab.c tattr.c testhdf5.c tfile.c th5s.c tmeta.c trefer.c \ + tselect.c unlink.c enum.c TEST_OBJ=$(TEST_SRC:.c=.o) # Private header files (not to be installed)... @@ -141,4 +142,7 @@ flush1: flush1.o flush2: flush2.o $(CC) $(CFLAGS) -o $@ flush2.o $(LDFLAGS) $(LIBS) +enum: enum.o + $(CC) $(CFLAGS) -o $@ enum.o $(LDFLAGS) $(LIBS) + @CONCLUDE@ |