blob: eeafe8791f7c7e4aa3d1babb74fb36d8f670b94f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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;
}
|