diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-03-06 02:20:31 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-03-06 02:20:31 +0300 |
commit | 514aa7b25bb6ec911b667d9e08e108f5e2b48665 (patch) | |
tree | 21cf7836edbe90255335047a0f94a1ae582ffd2a | |
parent | 719a878ea705fad59e60fe15625aacaab2684a81 (diff) |
Align with latest bdep-new some more
-rw-r--r-- | libbrep/buildfile | 8 | ||||
-rw-r--r-- | mod/buildfile | 10 | ||||
-rw-r--r-- | www/buildfile | 24 |
3 files changed, 31 insertions, 11 deletions
diff --git a/libbrep/buildfile b/libbrep/buildfile index 250c740..e649351 100644 --- a/libbrep/buildfile +++ b/libbrep/buildfile @@ -3,8 +3,12 @@ # license : MIT; see accompanying LICENSE file define sql: file -sql{*}: extension = sql -sql{*}: install = data/ + +sql{*}: +{ + extension = sql + install = data/ +} # @@ ODB: these are ODB changelogs that are both generated and stored in the # repository (what if src != out?). Will need to think how to handle diff --git a/mod/buildfile b/mod/buildfile index 98e4af6..bd68bd0 100644 --- a/mod/buildfile +++ b/mod/buildfile @@ -3,9 +3,13 @@ # license : MIT; see accompanying LICENSE file define mod: libs -mod{*}: bin.lib.prefix = mod_ -mod{*}: backlink = true # Backlink in forwarded configurations. -mod{*}: install = libexec/ + +mod{*}: +{ + bin.lib.prefix = mod_ + backlink = true # Backlink in forwarded configurations. + install = libexec/ +} import libs = libodb%lib{odb} import libs += libodb-pgsql%lib{odb-pgsql} diff --git a/www/buildfile b/www/buildfile index a49ffa0..e189202 100644 --- a/www/buildfile +++ b/www/buildfile @@ -3,15 +3,27 @@ # license : MIT; see accompanying LICENSE file define css: file -css{*}: extension = css -css{*}: install = data/www/ + +css{*}: +{ + extension = css + install = data/www/ +} define scss: file -scss{*}: extension = scss -scss{*}: install = data/www/ + +scss{*}: +{ + extension = scss + install = data/www/ +} define xhtml: file -xhtml{*}: extension = xhtml -xhtml{*}: install = data/www/ + +xhtml{*}: +{ + extension = xhtml + install = data/www/ +} ./: css{*} scss{*} xhtml{*} |