aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: e361b683e75bd8ebfe4e00143c61b18aef812d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Build

Xagasoft Build is a comprehensive build tool for nearly any multi-step
automation process, but is intended primarily for compiling source code.

Features:

 * Does _NOT_ rely on make of any sort.
 * Can auto-generate targets based on builtin and user provided rules.
 * Contains it's own Turing complete scripting language.
 * Provides a variety of output modes to make errors easier to see.
 * Supports plugins.
 * Write much, much less and do more.
 * Builtin understanding of dependency tracking.

## Requirements

There are different requirements depending on how you got your source code and
what you intend to do with it.  If you just want to use build, then I recommend
getting one of the release tarballs.  They include most of the dependencies and
are the easiest to use.

### Tarball Releases

To compile a tarball release you need:

 * bash (or similar)
 * C++ compiler (gcc is the primary development target)
 * libc with pthreads and libdl support (glibc and most compatibles)

### SCM Checkouts

If you're getting the code from source control or want to do more there are
these additional requirements:

 * flex
 * bison

The flex and bison source code are pre-processed into C source code for the
tarballs, so you do not need these programs in order to compile.

Build also relies on libbu++, but the shell script 'build.sh' will check out
the files it needs from libbu++ SVN.  These files are also included in the
tarball release.

Build also builds the easiest when using build.  Once you have a working
version of build it's very easy to keep working on build.

# Example Build Scripts

Just to give you a taste, here are some real, simple build scripts.

    target "filescan"
    {
        rule "exe";
        input files("src/*.cpp");
        CXXFLAGS += "-ggdb";
        LDFLAGS += "-lbu++";
    }

Build has sensible defaults for many things, this creates an explicit target
named filescan that relies on the source code in the directory src.  It adds
debugging flags, and it links libbu++.

The build system uses a variation on a standard boolean transitive closure
algorithm to provide "path-finding" between the .cpp files and the inputs the
"exe" rule needs to create output.  In this case it will automatically create
targets needed to produce all of the object code.

    CXXFLAGS += "-ggdb -I. -Ilibgats";
    LDFLAGS += "-ggdb";

    target "libjove.a"
    {
        rule "lib";
        input files("src/libjove/*.cpp");
    }

    target "joved"
    {
        rule "exe";
        input files("src/joved/*.cpp");
        requires "libjove.a";

        LDFLAGS += "-L. -ljove -lbu++ -Llibgats -lgats -lcryptopp -lpthread";
    }

This example is slightly more complex.  It sets some flags that all targets will
use, then creates two explicit targets.  The second target, joved, also
requires that libjove.a is up to date, but it is not treated as an input.  This
is enough to determine order of building, all source files, targets, and even
provides full dependency tracking.