diff options
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 212d824..3bf75a4 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -11,21 +11,24 @@ 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 extend external +PROGS=testhdf5 hyperslab istore dtypes dsets cmpd_dset extend external \ + iopipe TESTS=$(PROGS) # Temporary files MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \ tfile3.h5 th5s1.h5 theap.h5 tohdr.h5 tstab1.h5 tstab2.h5 \ - extern_1.h5 extern_2.h5 extern_3.h5 extern_1.raw extern_1b.raw extern_2.raw \ - extern_2b.raw extern_3.raw extern_3b.raw extern_4.raw extern_4b.raw + extern_1.h5 extern_2.h5 extern_3.h5 extern_1.raw extern_1b.raw \ + extern_2.raw extern_2b.raw extern_3.raw extern_3b.raw \ + extern_4.raw extern_4b.raw iopipe.raw iopipe.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 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 + hyperslab.c istore.c dsets.c cmpd_dset.c extend.c external.c \ + iopipe.c PROG_OBJ=$(PROG_SRC:.c=.o) TESTHDF5_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5s.c @@ -52,6 +55,12 @@ EXTEND_OBJ=$(EXTEND_SRC:.c=.o) EXTERNAL_SRC=external.c EXTERNAL_OBJ=$(EXTERNAL_SRC:.c=.o) +GRPTIME_SRC=grptime.c +GRPTIME_OBJ=$(GRPTIME_SRC:.c=.o) + +IOPIPE_SRC=iopipe.c +IOPIPE_OBJ=$(IOPIPE_SRC:.c=.o) + # Private header files (not to be installed)... PRIVATE_HDR=testhdf5.h @@ -80,4 +89,10 @@ extend: $(EXTEND_OBJ) ../src/libhdf5.a external: $(EXTERNAL_OBJ) ../src/libhdf5.a $(CC) $(CFLAGS) -o $@ $(EXTERNAL_OBJ) ../src/libhdf5.a $(LIBS) +iopipe: $(IOPIPE_OBJ) ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ $(IOPIPE_OBJ) ../src/libhdf5.a $(LIBS) + +grptime: $(GRPTIME_OBJ) ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ $(GRPTIME_OBJ) ../src/libhdf5.a $(LIBS) + @CONCLUDE@ |