// file : libbuild2/bash/target.cxx -*- C++ -*- // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #include #include using namespace std; namespace build2 { namespace bash { extern const char bash_ext_def[] = "bash"; const target_type bash::static_type { "bash", &file::static_type, &target_factory, nullptr, /* fixed_extension */ &target_extension_var, &target_pattern_var, nullptr, &file_search, false }; } }