Version 4.2.0.1, tag libreoffice-4.2.0.1
[LibreOffice.git] / odk / CustomTarget_check.mk
blob88af63aeac9bfff9dfa034d014da6a9a2940fae6
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_CustomTarget_CustomTarget,odk/check))
12 $(eval $(call gb_CustomTarget_register_targets,odk/check,\
13 checkbin \
16 odk_PLATFORM := $(if $(filter WNT,$(OS)),\
17 $(if $(filter GCC,$(COM)),mingw,windows),\
18 $(if $(filter SOLARIS,$(OS)),\
19 $(if $(filter SPARC,$(CPUNAME)),solsparc,\
20 $(if $(filter SPARC64,$(CPUNAME)),solsparc64,solintel)),\
21 $(if $(filter LINUX,$(OS)),linux,\
22 $(if $(filter NETBSD,$(OS)),netbsd,\
23 $(if $(filter FREEBSD,$(OS)),freebsd,\
24 $(if $(filter DRAGONFLY,$(OS)),dragonfly,\
25 $(if $(filter MACOSX,$(OS)),macosx,\
26 $(if $(filter AIX,$(OS)),aix))))))))
28 $(call gb_CustomTarget_get_workdir,odk/check)/checkbin : \
29 $(SRCDIR)/odk/util/check.pl \
30 $(if $(DOXYGEN),$(call gb_GeneratedPackage_get_target,odk_doxygen)) \
31 $(foreach exe,$(if $(filter WNT,$(OS)),climaker) cppumaker idlc javamaker regcompare $(if $(SYSTEM_UCPP),,ucpp) uno-skeletonmaker unoapploader,\
32 $(call gb_Executable_get_target,$(exe))) \
33 $(if $(filter WNT,$(OS)),$(call gb_Package_get_target,odk_cli)) \
34 $(call gb_Package_get_target,odk_config) \
35 $(if $(filter WNT,$(OS)),\
36 $(call gb_Package_get_target,odk_config_win),\
37 $(call gb_Package_get_target,odk_config_notwin) \
38 ) \
39 $(call gb_Package_get_target,odk_docs) \
40 $(call gb_Package_get_target,odk_html) \
41 $(if $(ENABLE_JAVA),$(call gb_Package_get_target,odk_javadoc)) \
42 $(call gb_Package_get_target,odk_lib) \
43 $(call gb_Package_get_target,odk_settings) \
44 $(call gb_Package_get_target,odk_settings_generated) \
45 $(call gb_Package_get_target,odk_uno_loader_classes) \
46 $(if $(ENABLE_JAVA),$(call gb_Package_get_target,odk_unowinreg))
47 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CHK,1)
48 $(call gb_Helper_print_on_error,\
49 $(PERL) $< \
50 $(INSTDIR)/$(SDKDIRNAME) \
51 $(odk_PLATFORM) "$(gb_Executable_EXT)" \
52 ,$@.log \
55 # vim: set noet sw=4 ts=4: