4404cd5165
in particular for the meta Makefiles of debug_and_release. the logic is as follows: - the meta targets ('html_docs' in prepare_docs mode, and 'docs' always) need to branch out asap, so they are implemented non-recursively in every makefile. - all other targets need to be fully recursive. the meta Makefile will recurse only into one of debug or release, depending on the configure option (it doesn't matter anyway). Change-Id: I4e3f714cdda9c3a1021743148b5ee73379e3484d Reviewed-by: hjk <qthjk@ovi.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
35 lines
966 B
Plaintext
35 lines
966 B
Plaintext
DOC_TARGETS = \
|
|
install_html_docs uninstall_html_docs \
|
|
install_qch_docs uninstall_qch_docs \
|
|
install_docs uninstall_docs \
|
|
qch_docs
|
|
|
|
prepare_docs {
|
|
DOC_TARGETS += prepare_docs generate_docs
|
|
html_docs.commands = $(MAKE) -f $(MAKEFILE) prepare_docs && $(MAKE) -f $(MAKEFILE) generate_docs
|
|
QMAKE_EXTRA_TARGETS += html_docs
|
|
} else {
|
|
DOC_TARGETS += html_docs
|
|
}
|
|
|
|
docs.commands = $(MAKE) -f $(MAKEFILE) html_docs && $(MAKE) -f $(MAKEFILE) qch_docs
|
|
QMAKE_EXTRA_TARGETS += docs
|
|
|
|
contains(TEMPLATE, subdirs) {
|
|
for(inst, DOC_TARGETS): \
|
|
prepareRecursiveTarget($$inst)
|
|
} else:debug_and_release:!build_pass {
|
|
sub = $$first(BUILDS)
|
|
for(inst, DOC_TARGETS) {
|
|
$${inst}.CONFIG = recursive
|
|
$${inst}.recurse = $$sub
|
|
}
|
|
} else {
|
|
# apps and libs only generate docs if QMAKE_DOCS is set
|
|
!isEmpty(QMAKE_DOCS) {
|
|
# backwards compat hack
|
|
load(qt_docs)
|
|
}
|
|
}
|
|
QMAKE_EXTRA_TARGETS += $$DOC_TARGETS
|