xref: /trunk/main/mythes/makefile.mk (revision f7d9bc2e)
17871dc3eSAndrew Rist#**************************************************************
27871dc3eSAndrew Rist#
37871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
47871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
57871dc3eSAndrew Rist#  distributed with this work for additional information
67871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
77871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
87871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
97871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
107871dc3eSAndrew Rist#
117871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
127871dc3eSAndrew Rist#
137871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
147871dc3eSAndrew Rist#  software distributed under the License is distributed on an
157871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
167871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
177871dc3eSAndrew Rist#  specific language governing permissions and limitations
187871dc3eSAndrew Rist#  under the License.
197871dc3eSAndrew Rist#
207871dc3eSAndrew Rist#**************************************************************
217871dc3eSAndrew Rist
227871dc3eSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ=.
25cdf0e10cSrcweir
26cdf0e10cSrcweirPRJNAME=mythes
27cdf0e10cSrcweirTARGET=mythes
28cdf0e10cSrcweir
29cdf0e10cSrcweir# --- Settings -----------------------------------------------------
30cdf0e10cSrcweir
31cdf0e10cSrcweir.INCLUDE :	settings.mk
32cdf0e10cSrcweir
33cdf0e10cSrcweir# --- Files --------------------------------------------------------
34cdf0e10cSrcweir
350ea1a209SEike Rathke
36cdf0e10cSrcweirTARFILE_NAME=mythes-1.2.0
37cdf0e10cSrcweirTARFILE_MD5=067201ea8b126597670b5eff72e1f66c
38cdf0e10cSrcweir
39cdf0e10cSrcweirADDITIONAL_FILES += makefile.mk
40cdf0e10cSrcweir
41cdf0e10cSrcweirPATCH_FILES=mythes-1.2.0-vanilla-th-gen-idx.patch \
42*f7d9bc2eSArmin Le Grand	mythes-1.2.0-overflow.patch \
4302a97874SHerbert Dürr	mythes-1.2.0-makefile-mk.patch \
44a44fea77SAriel Constenla-Haile	mythes-1.2.0-disable-example.patch
45cdf0e10cSrcweir
46cdf0e10cSrcweir.IF "$(GUI)"=="UNX"
47cdf0e10cSrcweirCONFIGURE_DIR=$(BUILD_DIR)
48cdf0e10cSrcweir
49cdf0e10cSrcweir.IF "$(SYSTEM_MYTHES)" != "YES"
50cdf0e10cSrcweir
51cdf0e10cSrcweir#relative to CONFIGURE_DIR
52cdf0e10cSrcweir# still needed also in system-mythes case as it creates the makefile
53cdf0e10cSrcweirCONFIGURE_ACTION=configure
54cdf0e10cSrcweirCONFIGURE_FLAGS= --disable-shared --with-pic
55cdf0e10cSrcweir
56cdf0e10cSrcweir.IF "$(COM)"=="C52" && "$(CPU)"=="U"
57cdf0e10cSrcweirLCL_CONFIGURE_CFLAGS+=-m64
58cdf0e10cSrcweir.ENDIF
59cdf0e10cSrcweir
60cdf0e10cSrcweir.IF "$(SYSBASE)"!=""
61cdf0e10cSrcweir.IF "$(EXTRA_CFLAGS)"!=""
62cdf0e10cSrcweirLCL_CONFIGURE_CFLAGS+=$(EXTRA_CFLAGS)
63cdf0e10cSrcweirCONFIGURE_FLAGS+=CXXFLAGS="$(EXTRA_CFLAGS)"
64cdf0e10cSrcweir.ENDIF # "$(EXTRA_CFLAGS)"!=""
65cdf0e10cSrcweir.ELIF "$(OS)"=="MACOSX" # "$(SYSBASE)"!=""
66cdf0e10cSrcweirCONFIGURE_FLAGS+=CPPFLAGS="$(EXTRA_CDEFS)"
67cdf0e10cSrcweir.ENDIF
68cdf0e10cSrcweir
69cdf0e10cSrcweir.IF "$(LCL_CONFIGURE_CFLAGS)"!=""
70cdf0e10cSrcweirCONFIGURE_FLAGS+=CFLAGS='$(LCL_CONFIGURE_CFLAGS)'
71cdf0e10cSrcweir.ENDIF
72cdf0e10cSrcweir
73cdf0e10cSrcweirBUILD_ACTION=make
74cdf0e10cSrcweirOUT2INC += mythes.hxx
75cdf0e10cSrcweir.ENDIF
76cdf0e10cSrcweir.ENDIF # "$(GUI)"=="UNX"
77cdf0e10cSrcweir
78cdf0e10cSrcweir
79cdf0e10cSrcweir.IF "$(GUI)"=="WNT"
80cdf0e10cSrcweir.IF "$(COM)"=="GCC"
81cdf0e10cSrcweirCONFIGURE_ACTION=configure
82a44fea77SAriel Constenla-HaileCONFIGURE_FLAGS= --disable-shared --with-pic
83cdf0e10cSrcweir
848d570ce7SPedro GiffuniBUILD_ACTION=make
85cdf0e10cSrcweir
86cdf0e10cSrcweir.ELSE
87cdf0e10cSrcweirBUILD_ACTION=dmake
88cdf0e10cSrcweir.ENDIF # "$(COM)"=="GCC"
89cdf0e10cSrcweirOUT2INC += mythes.hxx
90cdf0e10cSrcweir.ENDIF # "$(GUI)"=="WNT"
91cdf0e10cSrcweir
92cdf0e10cSrcweir.IF "$(GUI)"=="OS2"
93cdf0e10cSrcweirBUILD_ACTION=dmake
94cdf0e10cSrcweirOUT2INC += mythes.hxx
95cdf0e10cSrcweir.ENDIF # "$(GUI)"=="OS2"
96cdf0e10cSrcweir
97cdf0e10cSrcweir# --- Targets ------------------------------------------------------
98cdf0e10cSrcweir
99cdf0e10cSrcweir.INCLUDE : set_ext.mk
100cdf0e10cSrcweir.INCLUDE : target.mk
101cdf0e10cSrcweir.INCLUDE : tg_ext.mk
102