aboutsummaryrefslogtreecommitdiff
path: root/build/algorithm
blob: b67eb1a0ee1e9361b6241096d209622c6063e718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// file      : build/algorithm -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef BUILD_ALGORITHM
#define BUILD_ALGORITHM

namespace build
{
  class target;
  class prerequisite;

  target*
  search (prerequisite&);

  bool
  match (target&);
}

#endif // BUILD_ALGORITHM