diff options
Diffstat (limited to 'source/text/shared/guide/makefile.mk')
-rw-r--r-- | source/text/shared/guide/makefile.mk | 176 |
1 files changed, 176 insertions, 0 deletions
diff --git a/source/text/shared/guide/makefile.mk b/source/text/shared/guide/makefile.mk new file mode 100644 index 0000000000..9bc4454836 --- /dev/null +++ b/source/text/shared/guide/makefile.mk @@ -0,0 +1,176 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +# edit to match directory level +PRJ = ..$/..$/..$/.. +# same for all makefiles in "helpcontent2" +PRJNAME = helpcontent2 +# edit to match the current package +PACKAGE = text/shared/guide +# uniqe name (module wide); +# using a modified form of package should do here +TARGET = text_shared_guide +# edit to match the current module +MODULE = shared + +# --- Settings ----------------------------------------------------- + +.INCLUDE : settings.mk +.INCLUDE : $(PRJ)$/settings.pmk + +# this list matches the *.xhp files to process +XHPFILES = \ + aaa_start.xhp \ + accessibility.xhp \ + active_help_on_off.xhp \ + activex.xhp \ + assistive.xhp \ + autocorr_url.xhp \ + autohide.xhp \ + background.xhp \ + border_paragraph.xhp \ + border_table.xhp \ + breaking_lines.xhp \ + change_title.xhp \ + chart_axis.xhp \ + chart_barformat.xhp \ + chart_insert.xhp \ + chart_legend.xhp \ + chart_title.xhp \ + collab.xhp \ + configure_overview.xhp \ + contextmenu.xhp \ + copy_drawfunctions.xhp \ + copytable2application.xhp \ + copytext2application.xhp \ + ctl.xhp \ + data_addressbook.xhp \ + data_dbase2office.xhp \ + data_enter_sql.xhp \ + data_forms.xhp \ + data_im_export.xhp \ + data_new.xhp \ + data_queries.xhp \ + data_register.xhp \ + data_report.xhp \ + data_reports.xhp \ + data_search.xhp \ + data_search2.xhp \ + data_tabledefine.xhp \ + data_tables.xhp \ + data_view.xhp \ + database_main.xhp \ + digital_signatures.xhp \ + digitalsign_receive.xhp \ + digitalsign_send.xhp \ + doc_autosave.xhp \ + doc_open.xhp \ + doc_save.xhp \ + dragdrop.xhp \ + dragdrop_beamer.xhp \ + dragdrop_fromgallery.xhp \ + dragdrop_gallery.xhp \ + dragdrop_graphic.xhp \ + dragdrop_table.xhp \ + edit_symbolbar.xhp \ + email.xhp \ + error_report.xhp \ + export_ms.xhp \ + fax.xhp \ + filternavigator.xhp \ + find_attributes.xhp \ + flat_icons.xhp \ + floating_toolbar.xhp \ + fontwork.xhp \ + formfields.xhp \ + gallery_insert.xhp \ + groups.xhp \ + hyperlink_edit.xhp \ + hyperlink_insert.xhp \ + hyperlink_rel_abs.xhp \ + imagemap.xhp \ + import_ms.xhp \ + insert_bitmap.xhp \ + insert_graphic_drawit.xhp \ + insert_specialchar.xhp \ + integratinguno.xhp \ + keyboard.xhp \ + labels.xhp \ + labels_database.xhp \ + language_select.xhp \ + line_intext.xhp \ + lineend_define.xhp \ + linestyle_define.xhp \ + linestyles.xhp \ + macro_recording.xhp \ + main.xhp \ + measurement_units.xhp \ + microsoft_terms.xhp \ + mobiledevicefilters.xhp \ + ms_doctypes.xhp \ + ms_import_export_limitations.xhp \ + ms_user.xhp \ + navigator.xhp \ + navigator_setcursor.xhp \ + navpane_on.xhp \ + numbering_stop.xhp \ + pageformat_max.xhp \ + paintbrush.xhp \ + pasting.xhp \ + print_blackwhite.xhp \ + print_faster.xhp \ + protection.xhp \ + redlining.xhp \ + redlining_accept.xhp \ + redlining_doccompare.xhp \ + redlining_docmerge.xhp \ + redlining_enter.xhp \ + redlining_protect.xhp \ + redlining_versions.xhp \ + round_corner.xhp \ + scripting.xhp \ + space_hyphen.xhp \ + spadmin.xhp \ + standard_template.xhp \ + start_parameters.xhp \ + startcenter.xhp \ + tabs.xhp \ + text_color.xhp \ + textmode_change.xhp \ + undo_formatting.xhp \ + version_number.xhp \ + viewing_file_properties.xhp \ + workfolder.xhp \ + xforms.xhp \ + xsltfilter.xhp \ + xsltfilter_create.xhp \ + xsltfilter_distribute.xhp + +# --- Targets ------------------------------------------------------ + +.INCLUDE : target.mk +.INCLUDE : tg_help.mk |