-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
126 lines (125 loc) · 4.16 KB
/
page.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<html lang="en">
<head>
<link href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.0/normalize.min.css" rel="stylesheet">
<link href="/style/main.css" rel="stylesheet">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-39713566-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header class="navbar">
<div>
<nav class="topnav">
<ul>
<li class="current">
<a href="/">Home</a>
</li>
<li>
<a href="/blog/">Blog</a>
</li>
<li>
<a href="/changelog/">Changelog</a>
</li>
<li>
<a href="/doc/">Documentation</a>
</li>
<li>
<a href="https://plus.google.com/communities/103980026082642891435">Community</a>
</li>
<li>
<a href="https://www.bountysource.com/teams/fabutil">Bountysource</a>
</li>
<li>
<a href="https://github.com/hossbeast/fab">Github</a>
</li>
</ul>
</nav>
<a href="/">
<img src="/logo.png" alt="Fab">
</a>
</div>
</header>
<section class="headline">
<div>
<h1>Build Optimally</h1>
<p>Fab is a build system that helps you build optimally every time.</p>
</div>
</section>
<section>
<div class="sidebar">
<table>
<tr><td>Latest</td><td><a href="https://github.com/hossbeast/fab/releases">v0.5.3.0</a> - May 2016</td></tr>
<tr><td>Initial</td><td><a href="https://github.com/hossbeast/fab/releases">v0.4.0.0</a> - April 2013</td></tr>
<tr><td>License</td><td><a href="http://www.gnu.org/licenses/gpl-3.0.html">GPLv3</a></td></tr>
<tr><td>Platforms</td><td>Linux/x86</td></tr>
</table>
</div>
<h2>Features</h2>
<div>
<h3>Dependency discovery</h3>
<p>Dependencies within the project are discovered automatically by examining the source files.</p>
<h3>Caching daemon</h3>
<p>The caching daemon runs in the background so that expensive tasks, like building the dependency graph, are only perfomed once. Incremental builds are <i>really</i> fast.</p>
<h3>Persistent builds</h3>
<p>The caching daemon receives filesystem events so it already knows what's changed when you start a build. It can even start the build automatically.</p>
<h3>Modular build description</h3>
<p>Every project belongs to a larger project. Use the same build description files whether you're building just this library, or the whole product.</p>
</div>
</section>
<section class="shaded center">
<div>
<p><a href="https://github.com/hossbeast/fab" class="button">Goto the Github Project</a></p>
</div>
</section>
<section>
<h2>FAQ</h2>
<div>
<h3>Is Fab usable now?</h3>
<p>Absolutely. However, not all features are complete yet, and until the project reaches v1.0, everything is subject to change.</p>
</div>
<div>
<h3>Can I contribute? Can I donate?</h3>
<p>Visit the <a href="https://github.com/hossbeast/fab">Github</a> project to contribute. Visit the <a href="https://www.bountysource.com/teams/fabutil">Bountysource</a> page to donate.</p>
</div>
</section>
<section class="footer">
<div>
<nav class="botnav">
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/blog/">Blog</a>
</li>
<li>
<a href="/changelog/">Changelog</a>
</li>
<li>
<a href="/doc/">Documentation</a>
</li>
<li>
<a href="https://plus.google.com/communities/103980026082642891435">Community</a>
</li>
<li>
<a href="https://www.bountysource.com/teams/fabutil">Bountysource</a>
</li>
<li>
<a href="https://github.com/hossbeast/fab">Github</a>
</li>
</ul>
</nav>
</div>
<div>
<p style="font-size:smaller ; margin-top : 30px">
Copyright (c) 2012-2015 · <a href="mailto:todd.freed@gmail.com" style="color:white">Todd Freed</a>
</p>
</div>
</section>
</body>
</html>