blob: 87d37e71f080a58641ca7059ef26585d9c3eeea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// file : libbuild2/target.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <libbuild2/target.hxx>
#include <libbuild2/algorithm.hxx>
namespace build2
{
recipe_function* const empty_recipe = nullptr;
recipe_function* const noop_recipe = &noop_action;
recipe_function* const default_recipe = &default_action;
recipe_function* const group_recipe = &group_action;
recipe_function* const inner_recipe = &execute_inner;
}
|