2007-12-02 16:48:10 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-22 08:42:58 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2010-02-12 08:01:35 -06:00
|
|
|
# Copyright 2000, 2010 Oracle and/or its affiliates.
|
2007-12-02 16:48:10 -06:00
|
|
|
#
|
2008-04-22 08:42:58 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2007-12-02 16:48:10 -06:00
|
|
|
#
|
2008-04-22 08:42:58 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2007-12-02 16:48:10 -06:00
|
|
|
#
|
2008-04-22 08:42:58 -05:00
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
2007-12-02 16:48:10 -06:00
|
|
|
#
|
2008-04-22 08:42:58 -05:00
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2007-12-02 16:48:10 -06:00
|
|
|
#
|
2008-04-22 08:42:58 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2007-12-02 16:48:10 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
PRJ=.
|
|
|
|
|
|
|
|
PRJNAME=hyphen
|
|
|
|
TARGET=hyphen
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
2011-12-22 04:47:26 -06:00
|
|
|
TARFILE_NAME=hyphen-2.8.3
|
|
|
|
TARFILE_MD5=86261f06c097d3e425a2f6d0b0635380
|
2007-12-02 16:48:10 -06:00
|
|
|
|
2008-02-18 02:42:59 -06:00
|
|
|
ADDITIONAL_FILES += makefile.mk
|
|
|
|
|
2011-01-18 09:42:10 -06:00
|
|
|
PATCH_FILES= \
|
2011-12-22 04:47:26 -06:00
|
|
|
hyphen-build.patch \
|
2011-12-22 17:41:29 -06:00
|
|
|
hyphen-android.patch \
|
|
|
|
hyphen-fdo43931.patch
|
2007-12-02 16:48:10 -06:00
|
|
|
|
|
|
|
.IF "$(GUI)"=="UNX"
|
2008-02-18 02:42:59 -06:00
|
|
|
CONFIGURE_DIR=$(BUILD_DIR)
|
2007-12-02 16:48:10 -06:00
|
|
|
|
|
|
|
#relative to CONFIGURE_DIR
|
2008-05-15 03:31:08 -05:00
|
|
|
# still needed also in system-hyphen case as it creates the makefile
|
2007-12-02 16:48:10 -06:00
|
|
|
CONFIGURE_ACTION=configure
|
2011-05-13 17:47:28 -05:00
|
|
|
CONFIGURE_FLAGS=--disable-shared
|
|
|
|
|
|
|
|
.IF "$(OS)"!="IOS"
|
|
|
|
CONFIGURE_FLAGS+= --with-pic
|
|
|
|
.ENDIF
|
2007-12-02 16:48:10 -06:00
|
|
|
|
2008-08-27 07:54:37 -05:00
|
|
|
.IF "$(COM)"=="C52" && "$(CPU)"=="U"
|
|
|
|
LCL_CONFIGURE_CFLAGS+=-m64
|
|
|
|
.ENDIF
|
|
|
|
|
2008-06-26 01:00:11 -05:00
|
|
|
.IF "$(SYSBASE)"!=""
|
|
|
|
.IF "$(EXTRA_CFLAGS)"!=""
|
2008-08-27 07:54:37 -05:00
|
|
|
LCL_CONFIGURE_CFLAGS+=$(EXTRA_CFLAGS)
|
|
|
|
CONFIGURE_FLAGS+=CXXFLAGS="$(EXTRA_CFLAGS)"
|
2008-06-26 01:00:11 -05:00
|
|
|
.ENDIF # "$(EXTRA_CFLAGS)"!=""
|
2009-09-16 09:49:32 -05:00
|
|
|
.ELIF "$(OS)"=="MACOSX" # "$(SYSBASE)"!=""
|
|
|
|
CONFIGURE_FLAGS+=CPPFLAGS="$(EXTRA_CDEFS)"
|
|
|
|
.ENDIF
|
2008-06-26 01:00:11 -05:00
|
|
|
|
2008-08-27 07:54:37 -05:00
|
|
|
.IF "$(LCL_CONFIGURE_CFLAGS)"!=""
|
|
|
|
CONFIGURE_FLAGS+=CFLAGS='$(LCL_CONFIGURE_CFLAGS)'
|
|
|
|
.ENDIF
|
|
|
|
|
2008-05-15 03:31:08 -05:00
|
|
|
.IF "$(SYSTEM_HYPH)" == "YES" && "$(WITH_MYSPELL_DICTS)" == "YES"
|
|
|
|
BUILD_ACTION=make hyph_en_US.dic
|
|
|
|
.ELIF "$(SYSTEM_HYPH)" == "YES" && "$(WITH_MYSPELL_DICTS)" != "YES"
|
|
|
|
@all:
|
|
|
|
echo "Nothing to do here."
|
|
|
|
.ELSE
|
2010-07-20 05:46:55 -05:00
|
|
|
BUILD_ACTION=$(GNUMAKE) -j$(EXTMAXPROCESS)
|
2008-05-15 03:31:08 -05:00
|
|
|
OUT2INC += hyphen.h
|
|
|
|
.ENDIF
|
2007-12-02 16:48:10 -06:00
|
|
|
|
|
|
|
.ENDIF # "$(GUI)"=="UNX"
|
|
|
|
|
|
|
|
.IF "$(GUI)"=="WNT"
|
2008-06-06 10:59:22 -05:00
|
|
|
.IF "$(COM)"=="GCC"
|
|
|
|
CONFIGURE_ACTION=configure
|
|
|
|
CONFIGURE_FLAGS= --disable-shared --with-pic
|
|
|
|
|
|
|
|
BUILD_ACTION=make
|
|
|
|
|
|
|
|
.ELSE
|
2008-02-18 02:42:59 -06:00
|
|
|
BUILD_ACTION=dmake
|
2008-06-06 10:59:22 -05:00
|
|
|
.ENDIF # "$(COM)"=="GCC"
|
2008-05-19 02:17:44 -05:00
|
|
|
OUT2INC += hyphen.h
|
2007-12-02 16:48:10 -06:00
|
|
|
.ENDIF # "$(GUI)"=="WNT"
|
|
|
|
|
2011-06-06 00:57:32 -05:00
|
|
|
.IF "$(CROSS_COMPILING)"=="YES"
|
|
|
|
CONFIGURE_FLAGS+= --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)
|
2011-05-13 17:47:28 -05:00
|
|
|
.ENDIF
|
|
|
|
|
2007-12-02 16:48:10 -06:00
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : set_ext.mk
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
.INCLUDE : tg_ext.mk
|
|
|
|
|