configure: detect toolchain if not specified
[libvpx.git] / docs.mk
blob3e7b5cdebe3c5777a31d9d672881ee511f70d0f6
1 ##
2 ## Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
3 ##
4 ## Use of this source code is governed by a BSD-style license and patent
5 ## grant that can be found in the LICENSE file in the root of the source
6 ## tree. All contributing project authors may be found in the AUTHORS
7 ## file in the root of the source tree.
8 ##
11 INSTALL_MAPS += docs/% docs/%
12 INSTALL_MAPS += src/% %
13 INSTALL_MAPS += % %
15 # Static documentation authored in doxygen
16 CODEC_DOX := mainpage.dox \
17 keywords.dox \
18 usage.dox \
19 usage_cx.dox \
20 usage_dx.dox \
22 # Other doxy files sourced in Markdown
23 TXT_DOX-$(CONFIG_VP8) += vp8_api1_migration.dox
24 vp8_api1_migration.dox.DESC = VP8 API 1.x Migration
26 TXT_DOX = $(call enabled,TXT_DOX)
28 %.dox: %.txt
29 @echo " [DOXY] $@"
30 @$(SRC_PATH_BARE)/examples/gen_example_doxy.php \
31 $(@:.dox=) "$($@.DESC)" > $@ < $<
34 EXAMPLE_PATH += $(SRC_PATH_BARE) #for CHANGELOG, README, etc
36 doxyfile: libs.doxy_template libs.doxy examples.doxy
37 @echo " [CREATE] $@"
38 @cat $^ > $@
39 @echo "STRIP_FROM_PATH += $(SRC_PATH_BARE) $(BUILD_ROOT)" >> $@
40 @echo "INPUT += $(addprefix $(SRC_PATH_BARE)/,$(CODEC_DOX))" >> $@;
41 @echo "INPUT += $(TXT_DOX)" >> $@;
42 @echo "EXAMPLE_PATH += $(EXAMPLE_PATH)" >> $@
44 CLEAN-OBJS += doxyfile $(wildcard docs/html/*)
45 docs/html/index.html: doxyfile $(CODEC_DOX) $(TXT_DOX)
46 @echo " [DOXYGEN] $<"
47 @doxygen $<
48 DOCS-yes += docs/html/index.html
50 INSTALL-DOCS-yes = $(wildcard docs/html/*)
51 INSTALL-DOCS-$(CONFIG_CODEC_SRCS) += $(addprefix src/,$(CODEC_DOX))
52 INSTALL-DOCS-$(CONFIG_CODEC_SRCS) += src/libs.doxy_template
53 INSTALL-DOCS-yes += CHANGELOG
54 INSTALL-DOCS-yes += README