From 514aa7b25bb6ec911b667d9e08e108f5e2b48665 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 6 Mar 2019 02:20:31 +0300 Subject: Align with latest bdep-new some more --- libbrep/buildfile | 8 ++++++-- mod/buildfile | 10 +++++++--- 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{*} -- cgit v1.1