From c106259517d7693ea8e24564bc890fe575d5edcd Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 16 Jan 2015 14:11:14 +0200 Subject: Implement rule chaining for cxx::link --- build/cxx/target.cxx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'build/cxx/target.cxx') diff --git a/build/cxx/target.cxx b/build/cxx/target.cxx index c4502b4..f57c963 100644 --- a/build/cxx/target.cxx +++ b/build/cxx/target.cxx @@ -21,5 +21,11 @@ namespace build const target_type cxx::static_type { typeid (cxx), "cxx", &file::static_type, &target_factory}; + + const target_type h::static_type { + typeid (h), "h", &file::static_type, &target_factory}; + + const target_type c::static_type { + typeid (c), "c", &file::static_type, &target_factory}; } } -- cgit v1.1