summaryrefslogtreecommitdiff
path: root/tools/release/build_docs.sh
blob: 6e00fb31a0ac7b07e908c5e6980fcdf1f80e711f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash

# Build docs

# Copyright 2008 Beman Dawes
# Distributed under the Boost Software License, Version 1.0. See http://www.boost.org/LICENSE_1_0.txt

if [ $# -lt 1 ]
then
 echo "invoke:" $0 "directory-name"
 echo "example:" $0 "posix"
 exit 1
fi

echo building $1 docs...
pushd $1/doc
bjam --v2 >../../$1-bjam.log
ls html
popd