diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-08-19 21:46:55 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-08-19 21:46:55 (GMT) |
commit | 4322bfe90ab7de7245ff770155867fa5da78147c (patch) | |
tree | caf745276989b94c3ea7d8800cc59ba6c8b26024 /tools/Makefile.in | |
parent | 9945c358aa57514422a6479accab4df415c674d5 (diff) | |
download | hdf5-4322bfe90ab7de7245ff770155867fa5da78147c.zip hdf5-4322bfe90ab7de7245ff770155867fa5da78147c.tar.gz hdf5-4322bfe90ab7de7245ff770155867fa5da78147c.tar.bz2 |
[svn-r605] Added in h5dump tools created by Ruey-Hsia.
Renamed what was called h5dump.c to h5tools.c.
Changed Makefile.in to reflect all the changes.
(Make dependence is to be processed later.)
Tested in Solaris 2.5
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r-- | tools/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 2ab717a..e2c14c9 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -10,16 +10,16 @@ CPPFLAGS=-I../src -I. @CPPFLAGS@ # These are our main targets: -PROGS=h5debug h5import h5ls h5repart +PROGS=h5debug h5import h5ls h5repart h5dump LIB=libh5tools.a LIBS=../src/libhdf5.a libh5tools.a @LIBS@ # Source and object files for the library. -LIB_SRC=h5dump.c +LIB_SRC=h5tools.c LIB_OBJ=$(LIB_SRC:.c=.o) # Source and object files for programs... -PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c +PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c h5dump.c h5dumputil.c PROG_OBJ=$(PROG_SRC:.c=.o) PRIVATE_HDR=h5tools.h @@ -36,4 +36,7 @@ h5ls: h5ls.o $(LIB) ../src/libhdf5.a h5repart: h5repart.o $(LIB) ../src/libhdf5.a $(CC) $(CFLAGS) -o $@ h5repart.o $(LIBS) +h5dump: h5dump.o h5dumputil.o $(LIB) ../src/libhdf5.a + $(CC) $(CFLAGS) -o $@ h5dump.o h5dumputil.o $(LIBS) + @CONCLUDE@ |