summaryrefslogtreecommitdiffstats
path: root/tools/Makefile.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2000-10-13 05:09:30 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2000-10-13 05:09:30 (GMT)
commit3609fc24e7a53a9248647b092364822917e6001c (patch)
tree0ee0680750eea5b9f61c751066654cdd1ebf1f9e /tools/Makefile.in
parent58d613939400ecdb6de236c248eb75fbdbdb9695 (diff)
downloadhdf5-3609fc24e7a53a9248647b092364822917e6001c.zip
hdf5-3609fc24e7a53a9248647b092364822917e6001c.tar.gz
hdf5-3609fc24e7a53a9248647b092364822917e6001c.tar.bz2
[svn-r2682] Purpose:
Bug fix Description: gmake check had been failing because of errors in the Makefile. Solution: Fixed it so that libtools.a got build first. Platforms tested: Eirene (Linux)
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r--tools/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in
index 912b5ff..95c8085 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -24,7 +24,7 @@ LT_LINK_LIB=$(LT) --mode=link $(CC) -static -rpath $(libdir)
LIB=libh5tools.la
LIBHDF5=../src/libhdf5.la
PUB_PROGS=h5debug h5import h5ls h5repart h5dump @H5TOH4@ @H4TOH5@ @PDB2HDF@
-PROGS=$(PUB_PROGS) h5dumptst
+PROGS=$(PUB_PROGS) $(TEST_PROGS) h5dumptst
## Source and object files for the library; do not install
LIB_SRC=h5tools.c
@@ -40,7 +40,7 @@ H4TOH5_HDR=h4toh5main.h h4toh5util.h
## Source and object files for programs...
PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c h5dump.c h5toh4.c \
h5dumptst.c pdb2hdf.c talign.c $(H4TOH5_SRC)
-PROG_OBJ=$(PROG_SRC:.c=.lo) talign.lo $(H4TOH5_OBJ)
+PROG_OBJ=$(PROG_SRC:.c=.lo)
PRIVATE_HDR=h5tools.h $(H4TOH5_HDR)
## Source and object files for the tests
@@ -52,7 +52,7 @@ check test _test: $(PROGS)
## How to build the programs... They all depend on the hdf5 library and
## the tools library compiled in this directory.
-$(PROGS): $(LIB) ../src/libhdf5.la
+$(PROGS): $(LIB) $(LIBHDF5)
h5debug: h5debug.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ h5debug.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)