Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / external / lpsolve / ExternalProject_lpsolve.mk
blob37a5b7ac4a6ee9ac15e7e5ca634b8021d46aa22c
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_ExternalProject_ExternalProject,lpsolve))
12 $(eval $(call gb_ExternalProject_register_targets,lpsolve,\
13 build \
16 ifeq ($(OS),WNT)
17 $(call gb_ExternalProject_get_state_target,lpsolve,build):
18 $(call gb_ExternalProject_run,build,\
19 LIB="$(ILIB)" RUNTIME_FLAG="$(if $(MSVC_USE_DEBUG_RUNTIME),/MDd,/MD)" \
20 cmd /c cvc6.bat \
21 ,lpsolve55)
22 else # $(OS)!=WNT
23 $(call gb_ExternalProject_get_state_target,lpsolve,build):
24 $(call gb_ExternalProject_run,build,\
25 CC="$(CC) $(if $(ENABLE_OPTIMIZED),$(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS)) $(if $(debug),$(gb_DEBUGINFO_FLAGS))" \
26 $(if $(filter MACOSX,$(OS)),EXTRA_LINKFLAGS='-install_name @__________________________________________________OOO/liblpsolve55.dylib') \
27 sh -e $(if $(filter MACOSX,$(OS)),ccc.osx, \
28 $(if $(filter TRUE,$(DISABLE_DYNLOADING)),ccc.static, \
29 $(if $(filter AIXGCC,$(OS)$(COM)),ccc.aix.gcc, \
30 ccc))) \
31 ,lpsolve55)
32 endif # $(OS)
33 # vim: set noet sw=4 ts=4: