0d08bef014
Change-Id: I7a021c38e1c2e39641a28d95cc9cc7e3d5ee8225
45 lines
1.6 KiB
Makefile
45 lines
1.6 KiB
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# 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/.
|
|
#
|
|
|
|
$(eval $(call gb_ExternalProject_ExternalProject,lcms2))
|
|
|
|
$(eval $(call gb_ExternalProject_use_unpacked,lcms2,lcms2))
|
|
|
|
$(eval $(call gb_ExternalProject_register_targets,lcms2,\
|
|
build \
|
|
))
|
|
|
|
ifeq ($(COM),MSC)
|
|
|
|
ifeq ($(filter-out 14 13,$(COMEX)),)
|
|
$(call gb_ExternalProject_get_state_target,lcms2,build):
|
|
cd $(EXTERNAL_WORKDIR)/Projects/VC2010/lcms2_DLL \
|
|
&& MSBuild.exe lcms2_DLL.vcxproj /p:Configuration=Release /p:Platform=Win32 /p:TargetName=lcms2 \
|
|
$(if $(filter 14,$(COMEX)),/p:PlatformToolset=v110) \
|
|
&& touch $@
|
|
else
|
|
$(call gb_ExternalProject_get_state_target,lcms2,build):
|
|
cd $(EXTERNAL_WORKDIR)/Projects/VC2008/lcms2_DLL \
|
|
&& $(COMPATH)/vcpackages/vcbuild.exe lcms2_DLL.vcproj "Release|Win32" \
|
|
&& touch $@
|
|
endif
|
|
else
|
|
$(call gb_ExternalProject_get_state_target,lcms2,build):
|
|
cd $(EXTERNAL_WORKDIR) \
|
|
&& ./configure --without-jpeg --without-tiff --with-pic \
|
|
$(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
|
|
CPPFLAGS=" $(SOLARINC)" \
|
|
$(if $(filter-out WNTGCC,$(OS)$(COM)),,CPPFLAGS=" -DCMS_DLL_BUILD") \
|
|
$(if $(filter IOS ANDROID,$(OS)), --disable-shared --enable-static, --enable-shared --disable-static) \
|
|
$(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO) \
|
|
&& cd src \
|
|
&& $(MAKE) \
|
|
&& touch $@
|
|
endif
|
|
# vim: set noet sw=4 ts=4:
|