diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-09-03 14:59:27 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-09-03 14:59:27 (GMT) |
commit | f6e70a61421d71e93da0583614ca590ceb27cb50 (patch) | |
tree | a3cda3641a50f6a1f780db4824f6723cf3fd2554 /config | |
parent | 6589650eeafe95ec499b9c370e2d55a8b185d6a0 (diff) | |
download | hdf5-f6e70a61421d71e93da0583614ca590ceb27cb50.zip hdf5-f6e70a61421d71e93da0583614ca590ceb27cb50.tar.gz hdf5-f6e70a61421d71e93da0583614ca590ceb27cb50.tar.bz2 |
[svn-r659] Fixed a parallel build problem; make -j should work again now.
Diffstat (limited to 'config')
-rw-r--r-- | config/commence.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/config/commence.in b/config/commence.in index 6ec3133..60ddc69 100644 --- a/config/commence.in +++ b/config/commence.in @@ -33,8 +33,12 @@ bindir=@bindir@ libdir=@libdir@ includedir=@includedir@ -# The default is to build the library and/or programs -all: lib tests progs +# The default is to build the library and/or programs. We must build +# them sequentially. +all: + $(MAKE) lib + $(MAKE) progs + $(MAKE) tests # The following rules insure that the Makefile is up-to-date by rerunning # various autoconf components (although not all versions of make assume |