commit | cf10cda958a2a0f7dca3a65548d0766d1316bb58 | [log] [tgz] |
---|---|---|
author | Patrick Venture <venture@google.com> | Wed May 15 10:35:10 2019 -0700 |
committer | Patrick Venture <venture@google.com> | Wed May 15 12:17:31 2019 -0700 |
tree | 687cd10f9d27b08b66c6802853759d6b1feb0706 | |
parent | 213f2db6792436d370270092f1b62b25ab23aa03 [diff] [blame] |
build: use configure rule whether host tool is built Use a configure variable to control whether the host tool is built. It is built by default. Signed-off-by: Patrick Venture <venture@google.com> Change-Id: Ic5052fbd20cb16fe7fec8fc09d25b90457a5a645
diff --git a/Makefile.am b/Makefile.am index 9dbe34a..8789663 100644 --- a/Makefile.am +++ b/Makefile.am
@@ -86,4 +86,8 @@ $(CODE_COVERAGE_CXXFLAGS) \ -flto -SUBDIRS = . test tools +SUBDIRS = . test + +if BUILD_HOST_TOOL +SUBDIRS += tools +endif