Add modeline, fix formatting.

This commit is contained in:
David Given 2016-09-03 19:17:09 +02:00
parent 95ad06849b
commit 1b8df04e58

View file

@ -52,13 +52,13 @@ If we move the library into another directory, we can invoke it like this:
deps = { "path/to/library+library" } deps = { "path/to/library+library" }
} }
* Targets starting with `./` are relative to **the current directory** (i.e. * Targets starting with `./` are relative to **the current directory** (i.e.
the one the build file is in). the one the build file is in).
* Targets starting with a path are relative to the top directory of the * Targets starting with a path are relative to the top directory of the
project. project.
* Targets containing a `+` refer to a named target in another build file. So, * Targets containing a `+` refer to a named target in another build file. So,
on encountering the library in `prog3` above, ackbuilder will look for on encountering the library in `prog3` above, ackbuilder will look for
`path/to/library/build.lua`, load it, and then try to find a target in it `path/to/library/build.lua`, load it, and then try to find a target in it
called `library`. called `library`.
@ -347,3 +347,5 @@ level; but when `another_test` is built, it'll be `-g -O3`.
ackbuilder variables are only expanded in command templates, not in filenames. ackbuilder variables are only expanded in command templates, not in filenames.
<!-- # vim: set ts=2 sw=2 expandtab : -->