1Autowaf
2=======
3
4This is autowaf, a bundle of waf and a few extensions intended to be easy to
5use directly as source code in a project.  Using this as a submodule or subtree
6named `waflib` in a project allows waf to be used without including binary
7encoded data in the waf script.  This gets along with revision control and
8distributions better, among other advantages, without losing
9self-containedness.
10
11To use this in a project, add this repository as a directory named `waflib` in
12the top level of the project, and link or copy `waf` to the top level.
13
14Two waf extras are also included: `autowaf.py` and `lv2.py`.
15
16The `autowaf.py` module is a kitchen sink of Python utilities for building
17consistent packages, and can be imported in a wcript as
18`waflib.extras.autowaf`.
19
20The `lv2.py` extra defines options for LV2 plugin installation paths.  It can
21be used by calling `opt.load('lv2')` and `conf.load('lv2')` in the appropriate
22locations in a wscript.
23
24 -- David Robillard <d@drobilla.net>
25