diff options
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index a2259cd..76cc68d 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -11,11 +11,11 @@ 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 +PROGS=testhdf5 hyperslab istore dtypes dsets cmpd_dset extend TESTS=$(PROGS) # Temporary files -MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 istore.h5 tfile1.h5 tfile2.h5 \ +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 @@ -23,7 +23,7 @@ MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 istore.h5 tfile1.h5 tfile2.h5 \ # 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 + 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 @@ -44,6 +44,9 @@ 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 @@ -66,4 +69,7 @@ istore: $(ISTORE_OBJ) ../src/libhdf5.a 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@ |