summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-05-16 04:15:15 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-05-16 04:15:15 (GMT)
commit0fbb49ac81078a35f8d999bf9242d8a12b0921cf (patch)
treebc884e91036c447416ba5e586cdc812a6e0bd751 /config
parent4732761fe69bde35363f4041d2da13c3a1709663 (diff)
parenta98d4e42fa244ac48b4e7e8c2fc5010a96ef0d4b (diff)
downloadhdf5-0fbb49ac81078a35f8d999bf9242d8a12b0921cf.zip
hdf5-0fbb49ac81078a35f8d999bf9242d8a12b0921cf.tar.gz
hdf5-0fbb49ac81078a35f8d999bf9242d8a12b0921cf.tar.bz2
Merge branch 'hdf5_1_8' of https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_1_8_bmr into hdf5_1_8
Diffstat (limited to 'config')
-rw-r--r--config/conclude.am7
1 files changed, 5 insertions, 2 deletions
diff --git a/config/conclude.am b/config/conclude.am
index 1ba56fb..d380c9a 100644
--- a/config/conclude.am
+++ b/config/conclude.am
@@ -18,17 +18,19 @@
## Textually included at the end of most HDF5 Makefiles.am.
## Contains build rules.
-# Automake needs to be taught how to build lib, progs, and tests targets.
+# Automake needs to be taught how to build lib, dyn, progs, and tests targets.
# These will be filled in automatically for the most part (e.g.,
# lib_LIBRARIES are built for lib target), but EXTRA_LIB, EXTRA_PROG, and
# EXTRA_TEST variables are supplied to allow the user to force targets to
# be built at certain times.
LIB = $(lib_LIBRARIES) $(lib_LTLIBRARIES) $(noinst_LIBRARIES) \
$(noinst_LTLIBRARIES) $(check_LIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LIB)
+DYN = $(dyn_LTLIBRARIES)
PROGS = $(bin_PROGRAMS) $(bin_SCRIPTS) $(noinst_PROGRAMS) $(noinst_SCRIPTS) \
$(EXTRA_PROG)
chk_TESTS = $(check_PROGRAMS) $(check_SCRIPTS) $(EXTRA_TEST)
TESTS = $(TEST_PROG) $(TEST_SCRIPT) $(EXTRA_TEST)
+dyndir=$(libdir)
TEST_EXTENSIONS = .sh
SH_LOG_COMPILER = $(SHELL)
@@ -36,6 +38,7 @@ AM_SH_LOG_FLAGS =
# lib/progs/tests targets recurse into subdirectories. build-* targets
# build files in this directory.
+build-dyn: $(DYN)
build-lib: $(LIB)
build-progs: $(LIB) $(PROGS)
build-tests: $(LIB) $(PROGS) $(chk_TESTS)
@@ -43,7 +46,7 @@ build-tests: $(LIB) $(PROGS) $(chk_TESTS)
# General rule for recursive building targets.
# BUILT_SOURCES contain targets that need to be built before anything else
# in the directory (e.g., for Fortran type detection)
-lib progs tests check-s check-p :: $(BUILT_SOURCES)
+lib dyn progs tests check-s check-p :: $(BUILT_SOURCES)
@$(MAKE) $(AM_MAKEFLAGS) build-$@ || exit 1;
@for d in X $(SUBDIRS); do \
if test $$d != X && test $$d != .; then \