xref: /aoo42x/main/sal/textenc/makefile.mk (revision cdf0e10c)
1#*************************************************************************
2#
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# Copyright 2000, 2010 Oracle and/or its affiliates.
6#
7# OpenOffice.org - a multi-platform office productivity suite
8#
9# This file is part of OpenOffice.org.
10#
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.
14#
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).
20#
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.
25#
26#*************************************************************************
27
28PRJ = ..
29PRJNAME = sal
30TARGET = textenc
31
32.INCLUDE: settings.mk
33
34CFLAGS+= $(LFS_CFLAGS)
35CXXFLAGS+= $(LFS_CFLAGS)
36
37SLOFILES = \
38    $(SLO)$/context.obj \
39    $(SLO)$/convertbig5hkscs.obj \
40    $(SLO)$/converter.obj \
41    $(SLO)$/converteuctw.obj \
42    $(SLO)$/convertgb18030.obj \
43    $(SLO)$/convertiso2022cn.obj \
44    $(SLO)$/convertiso2022jp.obj \
45    $(SLO)$/convertiso2022kr.obj \
46    $(SLO)$/convertsinglebytetobmpunicode.obj \
47    $(SLO)$/tcvtbyte.obj \
48    $(SLO)$/tcvtmb.obj \
49    $(SLO)$/tcvtutf7.obj \
50    $(SLO)$/tcvtutf8.obj \
51    $(SLO)$/tenchelp.obj \
52    $(SLO)$/tencinfo.obj \
53    $(SLO)$/textcvt.obj \
54    $(SLO)$/textenc.obj \
55    $(SLO)$/unichars.obj
56
57OBJFILES = \
58    $(OBJ)$/context.obj \
59    $(OBJ)$/convertbig5hkscs.obj \
60    $(OBJ)$/converter.obj \
61    $(OBJ)$/converteuctw.obj \
62    $(OBJ)$/convertgb18030.obj \
63    $(OBJ)$/convertiso2022cn.obj \
64    $(OBJ)$/convertiso2022jp.obj \
65    $(OBJ)$/convertiso2022kr.obj \
66    $(OBJ)$/convertsinglebytetobmpunicode.obj \
67    $(OBJ)$/tcvtbyte.obj \
68    $(OBJ)$/tcvtmb.obj \
69    $(OBJ)$/tcvtutf7.obj \
70    $(OBJ)$/tcvtutf8.obj \
71    $(OBJ)$/tenchelp.obj \
72    $(OBJ)$/tencinfo.obj \
73    $(OBJ)$/textcvt.obj \
74    $(OBJ)$/textenc.obj \
75    $(OBJ)$/unichars.obj
76
77# Optimization off on Solaris Intel due to internal compiler error; to be
78# reevaluated after compiler upgrade:
79.IF "$(OS)$(CPU)" == "SOLARISI"
80
81NOOPTFILES = \
82    $(OBJ)$/textenc.obj \
83    $(SLO)$/textenc.obj
84
85.ENDIF # OS, CPU, SOLARISI
86
87.INCLUDE: target.mk
88