diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-07-15 16:39:46 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-07-15 16:39:46 (GMT) |
commit | 8ad2f1aae0e4b88dce6d97d32f91d305fa169f30 (patch) | |
tree | 30159c4663b7630a7060505425d1317dec1fb964 /config | |
parent | 0c67b4e2bc397f3dbd6526a406804932e3254b2e (diff) | |
download | hdf5-8ad2f1aae0e4b88dce6d97d32f91d305fa169f30.zip hdf5-8ad2f1aae0e4b88dce6d97d32f91d305fa169f30.tar.gz hdf5-8ad2f1aae0e4b88dce6d97d32f91d305fa169f30.tar.bz2 |
[svn-r510] Changes since 19980713
----------------------
./config/conclude.in
Fixed so `make test' and `make progs' work on a clean source tree.
Diffstat (limited to 'config')
-rw-r--r-- | config/conclude.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/conclude.in b/config/conclude.in index db45f5b..832797c 100644 --- a/config/conclude.in +++ b/config/conclude.in @@ -12,7 +12,7 @@ $(LIB) __no_library__: $(LIB_OBJ) $(AR) -rc $@ $(LIB_OBJ) $(RANLIB) $@ -progs: $(PROGS) +progs: $(LIB) $(PROGS) # Build a tags file in this directory. TAGS: $(LIB_SRC) @@ -20,7 +20,7 @@ TAGS: $(LIB_SRC) -etags $(LIB_SRC) # Runs each test in order, passing $(TEST_FLAGS) to the program. -tests: $(TESTS) +tests: $(LIB) $(TESTS) test _test: tests @for test in $(TESTS) dummy; do \ if test $$test != dummy; then \ |