diff options
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index cd18e59..0f7db53 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -11,7 +11,7 @@ CPPFLAGS=-I. @CPPFLAGS@ # These are our main targets: LIB=libhdf5.a -PROGS=debug h5ls +PROGS=debug h5ls h5repart # Source and object files for the library (lexicographically)... PARALLEL_SRC=H5Fmpio.c @@ -29,21 +29,21 @@ LIB_OBJ=$(LIB_SRC:.c=.o) MOSTLYCLEAN=H5detect.o H5detect H5Tinit.o H5Tinit.c # Source and object files for programs... -PROG_SRC=debug.c h5ls.c +PROG_SRC=debug.c h5ls.c h5repart.c PROG_OBJ=$(PROG_SRC:.c=.o) # Public header files (to be installed)... PUB_HDR=H5public.h H5Apublic.h H5ACpublic.h H5Bpublic.h H5Ppublic.h \ H5Dpublic.h H5Epublic.h H5Fpublic.h H5Gpublic.h H5HGpublic.h H5HLpublic.h \ - H5Ipublic.h H5MFpublic.h H5MMpublic.h H5Opublic.h H5Spublic.h \ - H5Tpublic.h H5config.h hdf5.h + H5Ipublic.h H5MFpublic.h H5MMpublic.h H5Opublic.h H5Spublic.h H5Tpublic.h \ + H5config.h hdf5.h # Other header files (not to be installed)... PRIVATE_HDR=H5private.h H5Aprivate.h H5Apkg.h H5ACprivate.h H5Bprivate.h \ H5Pprivate.h H5Dprivate.h H5Dpkg.h H5Eprivate.h H5Fprivate.h H5Gprivate.h \ H5Gpkg.h H5HGprivate.h H5HLprivate.h H5Iprivate.h H5MFprivate.h \ - H5MMprivate.h H5Oprivate.h H5Sprivate.h H5Tprivate.h H5Tpkg.h H5Vprivate.h \ - H5Zprivate.h + H5MMprivate.h H5Oprivate.h H5Sprivate.h H5Tprivate.h H5Tpkg.h \ + H5Vprivate.h H5Zprivate.h # Number format detection H5Tinit.c: H5detect @@ -60,4 +60,7 @@ debug: debug.o $(LIB) h5ls: h5ls.o $(LIB) $(CC) $(CFLAGS) -o $@ h5ls.o $(LIB) $(LIBS) +h5repart: h5repart.o $(LIB) + $(CC) $(CFLAGS) -o $@ h5repart.o $(LIB) $(LIBS) + @CONCLUDE@ |