diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2019-06-06 04:20:01 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2019-06-06 04:20:01 (GMT) |
commit | 54a07f556cd2f3556f8c7946fe7905bc658a11aa (patch) | |
tree | 2563b439aa79df337a7d4b4ec884be0d535ee1b8 /hl/c++ | |
parent | 4af633d1c480deb7d27c1da7ee2c512a2500e543 (diff) | |
download | hdf5-54a07f556cd2f3556f8c7946fe7905bc658a11aa.zip hdf5-54a07f556cd2f3556f8c7946fe7905bc658a11aa.tar.gz hdf5-54a07f556cd2f3556f8c7946fe7905bc658a11aa.tar.bz2 |
Add options to enable or disable building tools and tests. The default
is enabled for each.
Diffstat (limited to 'hl/c++')
-rw-r--r-- | hl/c++/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/hl/c++/Makefile.am b/hl/c++/Makefile.am index 1968bf5..f9ea328 100644 --- a/hl/c++/Makefile.am +++ b/hl/c++/Makefile.am @@ -18,7 +18,13 @@ include $(top_srcdir)/config/commence.am -SUBDIRS=src test +if BUILD_TESTS_CONDITIONAL + TESTSERIAL_DIR =test +else + TESTSERIAL_DIR= +endif + +SUBDIRS=src $(TESTSERIAL_DIR) DIST_SUBDIRS=src test examples # Install examples |