xref: /aoo4110/main/sal/textenc/makefile.mk (revision b1cdbd2c)
1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24PRJ = ..
25PRJNAME = sal
26TARGET = textenc
27
28.INCLUDE: settings.mk
29
30CFLAGS+= $(LFS_CFLAGS)
31CXXFLAGS+= $(LFS_CFLAGS)
32
33SLOFILES = \
34    $(SLO)$/context.obj \
35    $(SLO)$/convertbig5hkscs.obj \
36    $(SLO)$/converter.obj \
37    $(SLO)$/converteuctw.obj \
38    $(SLO)$/convertgb18030.obj \
39    $(SLO)$/convertiso2022cn.obj \
40    $(SLO)$/convertiso2022jp.obj \
41    $(SLO)$/convertiso2022kr.obj \
42    $(SLO)$/convertsinglebytetobmpunicode.obj \
43    $(SLO)$/tcvtbyte.obj \
44    $(SLO)$/tcvtmb.obj \
45    $(SLO)$/tcvtutf7.obj \
46    $(SLO)$/tcvtutf8.obj \
47    $(SLO)$/tenchelp.obj \
48    $(SLO)$/tencinfo.obj \
49    $(SLO)$/textcvt.obj \
50    $(SLO)$/textenc.obj \
51    $(SLO)$/unichars.obj
52
53OBJFILES = \
54    $(OBJ)$/context.obj \
55    $(OBJ)$/convertbig5hkscs.obj \
56    $(OBJ)$/converter.obj \
57    $(OBJ)$/converteuctw.obj \
58    $(OBJ)$/convertgb18030.obj \
59    $(OBJ)$/convertiso2022cn.obj \
60    $(OBJ)$/convertiso2022jp.obj \
61    $(OBJ)$/convertiso2022kr.obj \
62    $(OBJ)$/convertsinglebytetobmpunicode.obj \
63    $(OBJ)$/tcvtbyte.obj \
64    $(OBJ)$/tcvtmb.obj \
65    $(OBJ)$/tcvtutf7.obj \
66    $(OBJ)$/tcvtutf8.obj \
67    $(OBJ)$/tenchelp.obj \
68    $(OBJ)$/tencinfo.obj \
69    $(OBJ)$/textcvt.obj \
70    $(OBJ)$/textenc.obj \
71    $(OBJ)$/unichars.obj
72
73# Optimization off on Solaris Intel due to internal compiler error; to be
74# reevaluated after compiler upgrade:
75.IF "$(OS)$(CPU)" == "SOLARISI"
76
77NOOPTFILES = \
78    $(OBJ)$/textenc.obj \
79    $(SLO)$/textenc.obj
80
81.ENDIF # OS, CPU, SOLARISI
82
83.INCLUDE: target.mk
84