diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-14 14:39:01 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-14 14:56:23 +0300 |
commit | d9edb48752eed7d97cecc483260aab858f165f1c (patch) | |
tree | 5ecf67ccc2814b4101835c96666a9d117d305fcb /buildfile | |
parent | f91578e1e03c3b1eece18402f610bd29dd3af2f0 (diff) |
Make use of wildcards in buildfiles
Diffstat (limited to 'buildfile')
-rw-r--r-- | buildfile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -2,6 +2,9 @@ # copyright : Copyright (c) 2014-2017 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file +# Note that the project directories order is important (prerequisites goes +# first). +# d = libbutl/ build2/ libsqlite3/ libodb/ libodb-sqlite/ libbpkg/ bpkg/ doc/ i = \ @@ -13,13 +16,12 @@ BOOTSTRAP-MSVC \ BOOTSTRAP-UNIX \ BOOTSTRAP-WINDOWS -./: $d doc{$i README version} cli{$i} \ - file{build.sh build-msvc.bat build-mingw.bat manifest} +./: $d doc{$i README version} cli{$i} file{build.sh build-*} file{manifest} doc{version}: file{manifest} # Generated by the version module. doc{version}: dist = true # Don't install the BOOTSTRAP/INSTALL files. But UPGRADE could be useful. # -doc{INSTALL}@./: install = false +doc{INSTALL}@./: install = false doc{BOOTSTRAP-*}: install = false |