mirror of
https://github.com/LibreOffice/core.git
synced 2025-07-26 15:45:26 +00:00

This reverts commit 331bcad4db
now
there is a fix for the problem that triggered the revert.
Change-Id: I4acacd51d5799e80dfa42a0433278e684d82a860
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178577
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Tested-by: Jenkins
70 lines
1.6 KiB
Makefile
70 lines
1.6 KiB
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
$(eval $(call gb_Module_Module,extras))
|
|
|
|
$(eval $(call gb_Module_add_targets,extras,\
|
|
CustomTarget_autocorr \
|
|
CustomTarget_autotextuser \
|
|
CustomTarget_glade \
|
|
CustomTarget_gallsystem \
|
|
CustomTarget_templates \
|
|
Package_autocorr \
|
|
Package_autotext \
|
|
Package_autotextuser \
|
|
Package_cfgsrvnolang \
|
|
Package_cfgusr \
|
|
Package_database \
|
|
Package_databasebiblio \
|
|
Package_fonts \
|
|
Package_resource_fonts \
|
|
Package_gallbullets \
|
|
Package_gallmytheme \
|
|
Package_gallroot \
|
|
Package_gallsystem \
|
|
Package_gallsystemstr \
|
|
Package_glade \
|
|
Package_labels \
|
|
$(if $(filter WNT,$(OS)),Package_newfiles) \
|
|
Package_palettes \
|
|
Package_tplpresnt \
|
|
Package_tplwizdesktop \
|
|
Package_wordbook \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_l10n_targets,extras,\
|
|
CustomTarget_autotextshare \
|
|
AllLangPackage_autotextshare \
|
|
))
|
|
|
|
ifneq ($(WITH_GALLERY_BUILD),)
|
|
$(eval $(call gb_Module_add_targets,extras,\
|
|
Gallery_backgrounds \
|
|
$(call gb_Helper_optional,AVMEDIA,Gallery_sound) \
|
|
))
|
|
endif
|
|
|
|
ifneq ($(WITH_TEMPLATES),)
|
|
$(eval $(call gb_Module_add_targets,extras,\
|
|
Package_templates \
|
|
Package_tplwizard \
|
|
Package_tplwizbitmap \
|
|
))
|
|
endif
|
|
|
|
$(eval $(call gb_Module_add_targets,extras,\
|
|
Personas \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_targets,extras,\
|
|
CustomTarget_opensymbol \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|