Update autowaf.py
[ladi-patchage.git] / INSTALL
blobf6e4dd4491abee6cf22e0f914f4f9f31781ca0f3
1 This software requires only Python to build.
3 Like an auto* project, building has three phases:
6 * Configure:       ./waf configure [OPTIONS]
8   Example:
9     ./waf configure --prefix=/some/where --debug --strict
11   If --debug is not given, the flags from the environment variables
12   CFLAGS and CXXFLAGS will be used.
14   The default prefix is /usr/local
17 * Build:           ./waf [OPTIONS]
19   Example:
20     ./waf -j4
23 * Install:         ./waf install [OPTIONS]
25   The environment variable DESTDIR can be used to add any prefix to
26   the install paths (useful for packaging).  Example:
28   DESTDIR=/home/drobilla/packages ./waf install
31 *** IMPORTANT: You must use absolute paths everywhere
34 Run './waf --help' for detailed option information.