1#!/usr/bin/perl -w 2 3# Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com) 4# 5# Distributed under the Boost Software License, Version 1.0. (See accompanying 6# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 8use strict; 9 10system("doxygen reference.dox"); 11chdir("xml"); 12system("xsltproc combine.xslt index.xml > all.xml"); 13chdir(".."); 14system("xsltproc reference.xsl xml/all.xml > reference.qbk"); 15system("rm -rf xml"); 16 17system("doxygen tutorial.dox"); 18chdir("xml"); 19system("xsltproc combine.xslt index.xml > all.xml"); 20chdir(".."); 21system("xsltproc tutorial.xsl xml/all.xml > tutorial.qbk"); 22system("rm -rf xml reference.tags"); 23