aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 3b055fb..e361b68 100644
--- a/README.md
+++ b/README.md
@@ -6,18 +6,18 @@ automation process, but is intended primarily for compiling source code.
6Features: 6Features:
7 7
8 * Does _NOT_ rely on make of any sort. 8 * Does _NOT_ rely on make of any sort.
9 * Can auto-generate targets based on builtin and user proided rules. 9 * Can auto-generate targets based on builtin and user provided rules.
10 * Contains it's own turing complete scripting language. 10 * Contains it's own Turing complete scripting language.
11 * Provides a variety of output modes to make errors easier to see. 11 * Provides a variety of output modes to make errors easier to see.
12 * Supports plugins. 12 * Supports plugins.
13 * Write much, much less and do more. 13 * Write much, much less and do more.
14 * Builtin understanding of dependancy tracking. 14 * Builtin understanding of dependency tracking.
15 15
16## Requirements 16## Requirements
17 17
18There are different requirements depending on how you got your source code and 18There are different requirements depending on how you got your source code and
19what you intend to do with it. If you just want to use build, then I recommend 19what you intend to do with it. If you just want to use build, then I recommend
20getting one of the release tarballs. They include most of the dependancies and 20getting one of the release tarballs. They include most of the dependencies and
21are the easiest to use. 21are the easiest to use.
22 22
23### Tarball Releases 23### Tarball Releases
@@ -89,4 +89,4 @@ This example is slightly more complex. It sets some flags that all targets will
89use, then creates two explicit targets. The second target, joved, also 89use, then creates two explicit targets. The second target, joved, also
90requires that libjove.a is up to date, but it is not treated as an input. This 90requires that libjove.a is up to date, but it is not treated as an input. This
91is enough to determine order of building, all source files, targets, and even 91is enough to determine order of building, all source files, targets, and even
92provides full dependancy tracking. 92provides full dependency tracking.