Bump for 3.6-28
[LibreOffice.git] / mythes / makefile.mk
blob41770ffd0ab0f87f7db852c0f03eeb8708e0ce5a
1 #*************************************************************************
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 #
5 # Copyright 2000, 2010 Oracle and/or its affiliates.
7 # OpenOffice.org - a multi-platform office productivity suite
9 # This file is part of OpenOffice.org.
11 # OpenOffice.org is free software: you can redistribute it and/or modify
12 # it under the terms of the GNU Lesser General Public License version 3
13 # only, as published by the Free Software Foundation.
15 # OpenOffice.org is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU Lesser General Public License version 3 for more details
19 # (a copy is included in the LICENSE file that accompanied this code).
21 # You should have received a copy of the GNU Lesser General Public License
22 # version 3 along with OpenOffice.org. If not, see
23 # <http://www.openoffice.org/license.html>
24 # for a copy of the LGPLv3 License.
26 #*************************************************************************
28 PRJ=.
30 PRJNAME=mythes
31 TARGET=mythes
33 # --- Settings -----------------------------------------------------
35 .INCLUDE : settings.mk
37 # --- Files --------------------------------------------------------
39 TARFILE_NAME=mythes-1.2.2
40 TARFILE_MD5=e1e255dc43dbcbb34cb19e8a0eba90ae
42 ADDITIONAL_FILES += makefile.mk
44 PATCH_FILES=\
45 mythes-1.2.0-vanilla-th-gen-idx.patch \
46 mythes-1.2.2-overflow.patch \
47 mythes-1.2.0-makefile-mk.diff \
48 mythes-1.2.0-android.patch
50 .IF "$(COM)"=="GCC"
51 .IF "$(SYSTEM_HUNSPELL)" != "YES"
52 HUNSPELL_CFLAGS +:= -I$(SOLARINCDIR)$/hunspell
53 HUNSPELL_LIBS +:= -L$(SOLARLIBDIR) -lhunspell-1.3
54 .ENDIF
55 .ENDIF
57 .IF "$(GUI)"=="UNX"
58 CONFIGURE_DIR=$(BUILD_DIR)
60 #relative to CONFIGURE_DIR
61 # still needed also in system-mythes case as it creates the makefile
62 CONFIGURE_ACTION=configure
63 CONFIGURE_FLAGS= --disable-shared --with-pic
65 .IF "$(COM)"=="C52" && "$(CPU)"=="U"
66 LCL_CONFIGURE_CFLAGS+=-m64
67 .ELIF "$(OS)"=="AIX"
68 LCL_CONFIGURE_CFLAG+=-D_LINUX_SOURCE_COMPAT
69 .ENDIF
71 .IF "$(SYSBASE)"!=""
72 .IF "$(EXTRA_CFLAGS)"!=""
73 LCL_CONFIGURE_CFLAGS+=$(EXTRA_CFLAGS)
74 CONFIGURE_FLAGS+=CXXFLAGS="$(EXTRA_CFLAGS)"
75 .ENDIF # "$(EXTRA_CFLAGS)"!=""
76 .ELIF "$(OS)"=="MACOSX" # "$(SYSBASE)"!=""
77 CONFIGURE_FLAGS+=CPPFLAGS="$(EXTRA_CDEFS)"
78 .ENDIF
80 .IF "$(LCL_CONFIGURE_CFLAGS)"!=""
81 CONFIGURE_FLAGS+=CFLAGS='$(LCL_CONFIGURE_CFLAGS)'
82 .ENDIF
84 .IF "$(CROSS_COMPILING)"=="YES"
85 CONFIGURE_FLAGS+=--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) gio_can_sniff=no LIBS="$(STDLIBCUIMT)"
86 .ENDIF
88 BUILD_ACTION=make
89 OUT2INC += mythes.hxx
90 .ENDIF # "$(GUI)"=="UNX"
93 .IF "$(GUI)"=="WNT"
94 .IF "$(COM)"=="GCC"
95 CONFIGURE_ACTION=configure
96 CONFIGURE_FLAGS= --disable-shared --with-pic \
97 HUNSPELL_CFLAGS="$(HUNSPELL_CFLAGS)" \
98 HUNSPELL_LIBS="$(HUNSPELL_LIBS)"
100 .IF "$(CROSS_COMPILING)"=="YES"
101 CONFIGURE_FLAGS+=--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) gio_can_sniff=no
102 .ENDIF
104 BUILD_ACTION=make
106 .ELSE
107 BUILD_ACTION=dmake
108 .ENDIF # "$(COM)"=="GCC"
109 OUT2INC += mythes.hxx
110 .ENDIF # "$(GUI)"=="WNT"
112 # --- Targets ------------------------------------------------------
114 .INCLUDE : set_ext.mk
115 .INCLUDE : target.mk
116 .INCLUDE : tg_ext.mk
118 .IF "$(SYSTEM_HUNSPELL)" != "YES"
119 .EXPORT: HUNSPELL_LIBS HUNSPELL_CFLAGS
120 .ENDIF