office-gobmx/hyphen/makefile.mk

113 lines
2.9 KiB
Makefile
Raw Normal View History

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.
#
# 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
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
CONFIGURE_FLAGS=--disable-shared
.IF "$(OS)"!="IOS"
CONFIGURE_FLAGS+= --with-pic
.ENDIF
2007-12-02 16:48:10 -06:00
.IF "$(COM)"=="C52" && "$(CPU)"=="U"
LCL_CONFIGURE_CFLAGS+=-m64
.ENDIF
.IF "$(SYSBASE)"!=""
.IF "$(EXTRA_CFLAGS)"!=""
LCL_CONFIGURE_CFLAGS+=$(EXTRA_CFLAGS)
CONFIGURE_FLAGS+=CXXFLAGS="$(EXTRA_CFLAGS)"
.ENDIF # "$(EXTRA_CFLAGS)"!=""
.ELIF "$(OS)"=="MACOSX" # "$(SYSBASE)"!=""
CONFIGURE_FLAGS+=CPPFLAGS="$(EXTRA_CDEFS)"
.ENDIF
.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
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"
.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
.ENDIF # "$(COM)"=="GCC"
OUT2INC += hyphen.h
2007-12-02 16:48:10 -06:00
.ENDIF # "$(GUI)"=="WNT"
.IF "$(CROSS_COMPILING)"=="YES"
CONFIGURE_FLAGS+= --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)
.ENDIF
2007-12-02 16:48:10 -06:00
# --- Targets ------------------------------------------------------
.INCLUDE : set_ext.mk
.INCLUDE : target.mk
.INCLUDE : tg_ext.mk