2012-08-30 05:41:18 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2012-08-29 02:47:26 -05:00
|
|
|
#
|
2012-08-30 05:41:18 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2012-08-29 02:47:26 -05:00
|
|
|
#
|
2012-08-30 05:41:18 -05:00
|
|
|
# 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/.
|
2012-08-29 02:47:26 -05:00
|
|
|
#
|
2012-08-30 05:41:18 -05:00
|
|
|
# convert old po to new po
|
2012-08-29 02:47:26 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_Executable,renewpo))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_set_include,renewpo,\
|
|
|
|
-I$(SRCDIR)/l10ntools/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_use_libraries,renewpo,\
|
|
|
|
sal \
|
2012-08-31 08:09:06 -05:00
|
|
|
i18nregexp \
|
2012-08-29 02:47:26 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_use_static_libraries,renewpo,\
|
|
|
|
transex \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_add_exception_objects,renewpo,\
|
|
|
|
l10ntools/source/renewpo \
|
|
|
|
))
|
|
|
|
|
2012-08-30 05:41:18 -05:00
|
|
|
# vim: set noet sw=4 ts=4:
|