diff options
author | Craig Tiller <ctiller@google.com> | 2016-03-30 07:41:40 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-03-30 07:41:40 -0700 |
commit | ee225ef2316458c64e456da9253b4ba59d32e464 (patch) | |
tree | 46bceb92086ffd6ff2bb8e2f829d5263c92d9520 /templates/Makefile.template | |
parent | d9ea50ed4f8936d0385bbc8854029321ab15f320 (diff) | |
parent | 026a3dda920335b08d9d970fbe29f72627113384 (diff) |
Merge branch 'accounting' into split-me-baby-one-more-time
Diffstat (limited to 'templates/Makefile.template')
-rw-r--r-- | templates/Makefile.template | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/Makefile.template b/templates/Makefile.template index c54c146620..57fc146131 100644 --- a/templates/Makefile.template +++ b/templates/Makefile.template @@ -1737,7 +1737,7 @@ $(LIBDIR)/$(CONFIG)/lib${dep}.a\ % endfor - % if tgt.language == "c++" or tgt.boringssl: + % if tgt.language == "c++" or tgt.boringssl or tgt.build == 'fuzzer': ## C++ targets specificies. % if tgt.build == 'protoc': $(E) "[HOSTLD] Linking $@" @@ -1791,6 +1791,9 @@ % elif tgt.language == 'c++' and tgt.build == 'benchmark': $(GTEST_LIB)\ % endif + % if tgt.build == 'fuzzer': + -lFuzzer\ + % endif -o $(BINDIR)/$(CONFIG)/${tgt.name} % if tgt.build == 'protoc' or tgt.language == 'c++': |