mirror of
https://github.com/boostorg/cobalt.git
synced 2026-01-22 17:12:14 +00:00
22 lines
482 B
Plaintext
22 lines
482 B
Plaintext
# Copyright 2022 Klemens D. Morgenstern
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
import asciidoctor ;
|
|
|
|
html index.html : index.adoc : <flags>"-r asciidoctor-diagram" ;
|
|
|
|
install html_ : index.html : <location>html ;
|
|
|
|
pdf cobalt.pdf : index.adoc ;
|
|
explicit cobalt.pdf ;
|
|
|
|
install pdf_ : cobalt.pdf : <location>pdf ;
|
|
explicit pdf_ ;
|
|
|
|
alias boostdoc ;
|
|
explicit boostdoc ;
|
|
alias boostrelease : html_ ;
|
|
explicit boostrelease ;
|
|
|