2012-04-13 17:30:19 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2012-04-13 17:30:19 -05:00
|
|
|
#
|
2013-04-24 11:14:03 -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-04-13 17:30:19 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_Module,codemaker))
|
|
|
|
|
2013-03-08 07:14:46 -06:00
|
|
|
# if not cross-compiling or we need this for ODK
|
|
|
|
ifneq (,$(if $(CROSS_COMPILING),,T)$(filter ODK,$(BUILD_TYPE)))
|
2012-04-20 02:15:04 -05:00
|
|
|
|
2012-04-13 17:30:19 -05:00
|
|
|
$(eval $(call gb_Module_add_targets,codemaker,\
|
|
|
|
StaticLibrary_codemaker \
|
2012-04-14 05:31:32 -05:00
|
|
|
StaticLibrary_codemaker_cpp \
|
|
|
|
StaticLibrary_codemaker_java \
|
2012-04-13 17:30:19 -05:00
|
|
|
Executable_javamaker \
|
|
|
|
Executable_cppumaker \
|
|
|
|
))
|
|
|
|
|
2012-04-20 02:15:04 -05:00
|
|
|
endif
|
|
|
|
|
2013-01-26 15:19:07 -06:00
|
|
|
# vim:set noet sw=4 ts=4:
|