aboutsummaryrefslogtreecommitdiffstats
path: root/src/build.h
blob: 0eae0f34c19bf68aa9d661156a045c5593bbac26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* build.h
 *
 * Copyright (c) 2014 Tharre
 *
 * This software may be modified and distributed under the terms
 * of the MIT license.  See the LICENSE file for details.
 */

#ifndef __RBUILD_H__
#define __RBUILD_H__

#include <stdbool.h>

extern void add_dep(const char *target, const char *parent, int ident);
extern int update_target(const char *target, int ident);
extern void build_target(const char *target);
extern bool environment_sane();

#endif