-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjamroot.jam
More file actions
50 lines (41 loc) · 879 Bytes
/
jamroot.jam
File metadata and controls
50 lines (41 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#|
Copyright René Ferdinand Rivera Morell 2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
|#
import asciidoctor ;
project bfg
: source-location src
: build-dir bin
;
html footer-cc : footer-cc.adoc ;
explicit footer-cc ;
html docinfo-footer : footer.adoc
: <implicit-dependency>footer-cc <dependency>footer-cc ;
explicit docinfo-footer ;
install docinfo
: docinfo-footer
: <location>src
<dependency>docinfo.html
;
explicit docinfo ;
html index
: home.adoc
: <dependency>docinfo
;
explicit index ;
install img
: img/logo-180.png
img/logo-64.png
: <location>docs/img
;
explicit img ;
install html
: index
: <location>docs
;
explicit html ;
alias www
: html img
;