diff options
author | Dhvanil Popat <dpopat@hdfgroup.org> | 2019-06-25 01:40:07 (GMT) |
---|---|---|
committer | Dhvanil Popat <dpopat@hdfgroup.org> | 2019-06-25 01:40:07 (GMT) |
commit | 5d954a0214fa92aec884cdbccab10632a925fc08 (patch) | |
tree | e0f7ec80bb373be7685f4b38c1e7ccdd5902c1b1 /java | |
parent | 39537399a10dc27ac22a804e55d77d7160d1bd76 (diff) | |
download | hdf5-5d954a0214fa92aec884cdbccab10632a925fc08.zip hdf5-5d954a0214fa92aec884cdbccab10632a925fc08.tar.gz hdf5-5d954a0214fa92aec884cdbccab10632a925fc08.tar.bz2 |
Squash commit of options to build tools and tests
Diffstat (limited to 'java')
-rw-r--r-- | java/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/java/Makefile.am b/java/Makefile.am index 7d0e2f0..68a6e47 100644 --- a/java/Makefile.am +++ b/java/Makefile.am @@ -23,13 +23,21 @@ include $(top_srcdir)/config/commence.am +if BUILD_TESTS_CONDITIONAL + TESTSERIAL_DIR =test + TESTEXAMPLES_DIR =examples +else + TESTSERIAL_DIR= + TESTEXAMPLES_DIR= +endif + ## Only recurse into subdirectories if the Java (JNI) interface is enabled. if BUILD_JAVA_CONDITIONAL # Mark this directory as part of the JNI API JAVA_API=yes -SUBDIRS=src test examples +SUBDIRS=src $(TESTSERIAL_DIR) $(TESTEXAMPLES_DIR) endif |