Stop leaking all ScPostIt instances.
[LibreOffice.git] / external / lpsolve / ExternalProject_lpsolve.mk
blob55da7045753847255a37dd48331fff2a27351604
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 ifeq ($(COM),GCC)
18 $(call gb_ExternalProject_get_state_target,lpsolve,build):
19 $(call gb_ExternalProject_run,build,\
20 $(if $(filter WNT,$(OS_FOR_BUILD)), \
21 $(if $(filter YES,$(MINGW_SHARED_GCCLIB)) lpsolve_LDFLAGS="-shared-libgcc") \
22 $(if $(filter YES,$(MINGW_SHARED_GXXLIB)) lpsolve_LIBS="$(MINGW_SHARED_LIBSTDCPP)") \
23 cmd /c cgcc.bat, sh ccc) \
24 ,lpsolve55)
25 else # $(COM)!=GCC
26 $(call gb_ExternalProject_get_state_target,lpsolve,build):
27 $(call gb_ExternalProject_run,build,\
28 LIB="$(ILIB)" RUNTIME_FLAG="$(if $(MSVC_USE_DEBUG_RUNTIME),/MDd,/MD)" \
29 cmd /c cvc6.bat \
30 ,lpsolve55)
31 endif # $(COM)
32 else # $(OS)!=WNT
33 $(call gb_ExternalProject_get_state_target,lpsolve,build):
34 $(call gb_ExternalProject_run,build,\
35 sh $(if $(filter MACOSX,$(OS)),ccc.osx, \
36 $(if $(filter TRUE,$(DISABLE_DYNLOADING)),ccc.static, \
37 $(if $(filter AIXGCC,$(OS)$(COM)),ccc.aix.gcc, \
38 ccc))) \
39 ,lpsolve55)
40 endif # $(OS)
41 # vim: set noet sw=4 ts=4: