diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-10-22 21:30:19 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-10-22 21:30:19 (GMT) |
commit | ce5c245a95ac147248e689ea3f2f9c4969bcc233 (patch) | |
tree | 04c309d3830b0ba165c98a5ac820f5c58fb9ddd4 /tools/h5diff/Makefile.in | |
parent | 918b657dddfbe74c5cd419865536fa6c6104ae75 (diff) | |
download | hdf5-ce5c245a95ac147248e689ea3f2f9c4969bcc233.zip hdf5-ce5c245a95ac147248e689ea3f2f9c4969bcc233.tar.gz hdf5-ce5c245a95ac147248e689ea3f2f9c4969bcc233.tar.bz2 |
[svn-r7702] Purpose:
h5diff maitainance
Description:
separated the h5diff source between several modules
there is a public module with a new function "h5diff" that can be called by an application
program (h5repack will use it )
added a new verbose option that can turn off all printf
Platforms tested:
linux
solaris
IRIX
Misc. update:
Diffstat (limited to 'tools/h5diff/Makefile.in')
-rw-r--r-- | tools/h5diff/Makefile.in | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tools/h5diff/Makefile.in b/tools/h5diff/Makefile.in index 4ce10db..ae5b212 100644 --- a/tools/h5diff/Makefile.in +++ b/tools/h5diff/Makefile.in @@ -48,10 +48,11 @@ MOSTLYCLEAN=*.h5 ## Source and object files for programs... ## -PROG_SRC=h5diff.c h5trav.c h5difftst.c +PROG_SRC=h5diff.c h5diff_array.c h5diff_dset.c h5diff_main.c h5diff_util.c h5trav.c h5trav_table.c test_h5diff.c PROG_OBJ=$(PROG_SRC:.c=.lo) +OBJS=h5diff.lo h5diff_array.lo h5diff_dset.lo h5diff_main.lo h5diff_util.lo h5trav.lo h5trav_table.lo -PRIVATE_HDR=h5trav.h +PRIVATE_HDR=h5trav.h h5diff.h ## Source and object files for the tests ## @@ -67,11 +68,11 @@ check test _test: $(PROGS) ## $(PROGS): $(LIBHDF5) -h5diff: h5diff.lo h5trav.lo - @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5diff.lo h5trav.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) +h5diff: $(OBJS) + @$(LT_LINK_EXE) $(CFLAGS) -o $@ $(OBJS) $(LIBHDF5) $(LDFLAGS) $(LIBS) -h5difftst: h5difftst.lo - @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5difftst.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) +h5difftst: test_h5diff.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ test_h5diff.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) @CONCLUDE@ |