update credits
[LibreOffice.git] / odk / CustomTarget_autodoc.mk
blob126d5e2f28860c7e7efcbec960daced9a2101890
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_CustomTarget_CustomTarget,odk/docs/common/ref))
12 $(eval $(call gb_CustomTarget_register_targets,odk/docs/common/ref,\
13 autodoc_log.txt \
16 $(call gb_CustomTarget_get_workdir,odk/docs/common/ref)/%.html : $(call gb_CustomTarget_get_workdir,odk/docs/common/ref)/autodoc_log.txt
17 touch $@
19 $(call gb_CustomTarget_get_workdir,odk/docs/common/ref)/autodoc_log.txt : \
20 $(SRCDIR)/odk/pack/copying/idl_chapter_refs.txt \
21 $(SRCDIR)/odk/docs/common/ref/idl.css \
22 $(call gb_Executable_get_runtime_dependencies,autodoc)
23 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),AUD,1)
24 $(call gb_Executable_get_command,autodoc) \
25 -html $(dir $@) \
26 -dvgroot "http://wiki.services.openoffice.org/wiki" \
27 -name "LibreOffice $(PRODUCTVERSION) API" \
28 -lg idl \
29 -dvgfile $< \
30 -t $(SRCDIR)/udkapi $(SRCDIR)/offapi \
31 > $@
34 # vim: set noet sw=4 ts=4: