diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-30 15:30:39 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-30 15:30:39 +0200 |
commit | e879c347f4f05dac5405bcc45ae2d5c9dde5447c (patch) | |
tree | 8ad9956bf66a3b28c9628608e8b9c9787e2c34a5 /buildfile | |
parent | dee70af1d3b6ca4caf1027b79eb471b28624fff8 (diff) |
Add support for target visibility, use for dist, test, install
This means we can no longer write:
install = false
Now it should be:
*: install = false
Diffstat (limited to 'buildfile')
-rw-r--r-- | buildfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -11,4 +11,7 @@ file{INSTALL.cli config.guess config.sub manifest} include $d -doc{INSTALL*}: install = false +# Don't install tests or the INSTALL file. +# +dir{tests/}: install = false +doc{INSTALL}@./: install = false |