67867f77d9
Change-Id: I132479fd26e45276f25af5615175b0fdaeaaeb01 Reviewed-on: https://gerrit.libreoffice.org/6347 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
25 lines
638 B
Makefile
25 lines
638 B
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,mythes))
|
|
|
|
$(eval $(call gb_Module_add_targets,mythes,\
|
|
UnpackedTarball_mythes \
|
|
))
|
|
ifeq ($(COM),MSC)
|
|
$(eval $(call gb_Module_add_targets,mythes,\
|
|
StaticLibrary_mythes \
|
|
))
|
|
else
|
|
$(eval $(call gb_Module_add_targets,mythes,\
|
|
ExternalProject_mythes \
|
|
))
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|