mirror of
https://github.com/boostorg/ublas.git
synced 2026-01-21 05:22:17 +00:00
This is GSoC 2021 project of Shikhar Vashistha who copied existing uBlas documentation and used AsciiDoc for formatting.
30 lines
586 B
Plaintext
30 lines
586 B
Plaintext
# Copyright 2021 Shikhar Vashistha
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (http://www.boost.org/LICENSE_1_0.txt)
|
|
# Copyright 2021 Shikhar Vashistha
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
import asciidoctor ;
|
|
|
|
html ublas.html : ublas.adoc ;
|
|
|
|
install html_ : ublas.html : <location>html ;
|
|
|
|
pdf ublas.pdf : ublas.adoc ;
|
|
|
|
explicit ublas.pdf ;
|
|
|
|
install pdf_ : ublas.pdf : <location>pdf ;
|
|
|
|
explicit pdf_ ;
|
|
|
|
alias boostdoc ;
|
|
|
|
explicit boostdoc ;
|
|
|
|
alias boostrelease : html_ ;
|
|
|
|
explicit boostrelease ; |