mirror of
https://github.com/boostorg/cobalt.git
synced 2026-01-19 04:02:16 +00:00
26 lines
526 B
Plaintext
26 lines
526 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 ;
|
|
|
|
install images : $(images) : <location>html/images ;
|
|
install html_ : index.html : <location>html : <dependency>images ;
|
|
|
|
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 ;
|
|
|