summaryrefslogtreecommitdiff
path: root/liborcus/makefile.mk
blob: 4acf2d8cf34e8aebaa8de93bcb1a38597be2cda1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#
# 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/.
#
# This file incorporates work covered by the following license notice:
#
#   Licensed to the Apache Software Foundation (ASF) under one or more
#   contributor license agreements. See the NOTICE file distributed
#   with this work for additional information regarding copyright
#   ownership. The ASF licenses this file to you under the Apache
#   License, Version 2.0 (the "License"); you may not use this file
#   except in compliance with the License. You may obtain a copy of
#   the License at http://www.apache.org/licenses/LICENSE-2.0 .
#

PRJ=.

PRJNAME=orcus
TARGET=orcus

# --- Settings -----------------------------------------------------

.INCLUDE :	settings.mk

# --- Files --------------------------------------------------------

.IF "$(SYSTEM_LIBORCUS)" == "YES"
@all:
    @echo "Using system liborcus..."
.ENDIF

TARFILE_NAME=liborcus_0.1.0
TARFILE_MD5=46d9f4cf8b145c21ce1056e116d2ce71

PATCH_FILES=liborcus_0.1.0-warnings.patch
    # -Werror,-Wunused-variable -Werror,-Wunused-private-field

PATCH_FILES+=liborcus_0.1.0-configure.patch
    # make config.sub recognize arm-linux-androideabi

# fix MinGW build
PATCH_FILES+=liborcus_0.1.0-mingw.patch

.IF "$(GUI)$(COM)"=="WNTMSC"

BUILD_DIR=vsprojects/liborcus-static-nozip
BUILD_ACTION= \
	export BOOST_INCLUDE_DIR=$(OUTDIR)/inc/external && \
	export BOOST_LIB_DIR=$(OUTDIR)/lib && \
	$(COMPATH)$/vcpackages$/vcbuild.exe liborcus-static-nozip.vcproj "Release|Win32"

.ELSE

.IF "$(SYSTEM_BOOST)" == "NO"
MY_CXXFLAGS = CXXFLAGS=-I$(OUTDIR)/inc/external
.END

CONFIGURE_DIR=
CONFIGURE_ACTION=./configure \
	--with-pic \
	--enable-static \
	--disable-shared \
	--without-libzip \
	--disable-debug \
	--disable-spreadsheet-model $(MY_CXXFLAGS)

.IF "$(CROSS_COMPILING)" == "YES"
CONFIGURE_ACTION+=--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)
.ENDIF

.IF "$(OS)" == "ANDROID"
CONFIGURE_ACTION:=LIBS='-lgnustl_shared -lm' $(CONFIGURE_ACTION)
.ENDIF

BUILD_ACTION=make
BUILD_DIR=

.ENDIF

# --- Targets ------------------------------------------------------

.INCLUDE : set_ext.mk
.INCLUDE :	target.mk
.INCLUDE :	tg_ext.mk