diff options
author | 2014-12-15 13:27:38 -0800 | |
---|---|---|
committer | 2014-12-15 14:49:02 -0800 | |
commit | bba7692b6bab588ea13a708c9c4f0b9e48f92cb3 (patch) | |
tree | 6006e89cd8d78b90270f182996cace078b09350f /templates/Makefile.template | |
parent | c1ddffbf1fc6834adcc3909f06b5c8d2d92cc84a (diff) |
Fixing typo that was preventing some targets to build.
Change on 2014/12/15 by nnoble <nnoble@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=82170695
Diffstat (limited to 'templates/Makefile.template')
-rw-r--r-- | templates/Makefile.template | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/Makefile.template b/templates/Makefile.template index 5189000a4c..17d2abc25e 100644 --- a/templates/Makefile.template +++ b/templates/Makefile.template @@ -336,7 +336,7 @@ privatelibs_cxx: dep_cxx\ buildtests: buildtests_c buildtests_cxx -buildtests_c: bin_dep_c privatelibs_c\ +buildtests_c: bins_dep_c privatelibs_c\ % for tgt in targets: % if tgt.build == 'test' and not tgt.get('c++', False): bins/${tgt.name}\ @@ -344,7 +344,7 @@ buildtests_c: bin_dep_c privatelibs_c\ % endfor -buildtests_cxx: bin_dep_cxx privatelibs_cxx\ +buildtests_cxx: bins_dep_cxx privatelibs_cxx\ % for tgt in targets: % if tgt.build == 'test' and tgt.get('c++', False): bins/${tgt.name}\ @@ -777,7 +777,8 @@ install-static install-static_c install-static_cxx \ strip strip-shared strip-static \ strip_c strip-shared_c strip-static_c \ strip_cxx strip-shared_cxx strip-static_cxx \ -clean\ +clean \ +dep_c dep_cxx bins_dep_c bins_dep_cxx\ % for lib in libs: deps_lib${lib.name} clean_lib${lib.name}\ % endfor |