xref: /aoo41x/main/sc/source/ui/docshell/makefile.mk (revision 7871dc3e)
1*7871dc3eSAndrew Rist#**************************************************************
2*7871dc3eSAndrew Rist#
3*7871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
4*7871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
5*7871dc3eSAndrew Rist#  distributed with this work for additional information
6*7871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
7*7871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
8*7871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
9*7871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
10*7871dc3eSAndrew Rist#
11*7871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12*7871dc3eSAndrew Rist#
13*7871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
14*7871dc3eSAndrew Rist#  software distributed under the License is distributed on an
15*7871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*7871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
17*7871dc3eSAndrew Rist#  specific language governing permissions and limitations
18*7871dc3eSAndrew Rist#  under the License.
19*7871dc3eSAndrew Rist#
20*7871dc3eSAndrew Rist#**************************************************************
21*7871dc3eSAndrew Rist
22*7871dc3eSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ=..$/..$/..
25cdf0e10cSrcweir
26cdf0e10cSrcweirPRJNAME=sc
27cdf0e10cSrcweirTARGET=docshell
28cdf0e10cSrcweirLIBTARGET=no
29cdf0e10cSrcweir
30cdf0e10cSrcweir# --- Settings -----------------------------------------------------
31cdf0e10cSrcweir
32cdf0e10cSrcweir.INCLUDE :  scpre.mk
33cdf0e10cSrcweir.INCLUDE :  settings.mk
34cdf0e10cSrcweir.INCLUDE :  sc.mk
35cdf0e10cSrcweir.INCLUDE :  $(PRJ)$/util$/makefile.pmk
36cdf0e10cSrcweir
37cdf0e10cSrcweir# --- Files --------------------------------------------------------
38cdf0e10cSrcweir
39cdf0e10cSrcweirCXXFILES = \
40cdf0e10cSrcweir        docsh.cxx	\
41cdf0e10cSrcweir        docsh2.cxx	\
42cdf0e10cSrcweir        docsh3.cxx	\
43cdf0e10cSrcweir        docsh4.cxx 	\
44cdf0e10cSrcweir        docsh5.cxx	\
45cdf0e10cSrcweir        docsh6.cxx 	\
46cdf0e10cSrcweir        docsh7.cxx 	\
47cdf0e10cSrcweir        docsh8.cxx 	\
48cdf0e10cSrcweir        externalrefmgr.cxx \
49cdf0e10cSrcweir        tablink.cxx 	\
50cdf0e10cSrcweir        arealink.cxx 	\
51cdf0e10cSrcweir        dbdocfun.cxx 	\
52cdf0e10cSrcweir        dbdocimp.cxx 	\
53cdf0e10cSrcweir        impex.cxx	\
54cdf0e10cSrcweir        docfunc.cxx	\
55cdf0e10cSrcweir        olinefun.cxx	\
56cdf0e10cSrcweir        servobj.cxx	\
57cdf0e10cSrcweir		tpstat.cxx	\
58cdf0e10cSrcweir		autostyl.cxx	\
59cdf0e10cSrcweir		pagedata.cxx \
60cdf0e10cSrcweir		hiranges.cxx \
61cdf0e10cSrcweir		pntlock.cxx \
62cdf0e10cSrcweir		sizedev.cxx \
63cdf0e10cSrcweir		editable.cxx
64cdf0e10cSrcweir
65cdf0e10cSrcweir
66cdf0e10cSrcweirSLOFILES =  \
67cdf0e10cSrcweir        $(SLO)$/docsh.obj	\
68cdf0e10cSrcweir        $(SLO)$/docsh2.obj	\
69cdf0e10cSrcweir        $(SLO)$/docsh3.obj	\
70cdf0e10cSrcweir        $(SLO)$/docsh4.obj   	\
71cdf0e10cSrcweir        $(SLO)$/docsh5.obj   	\
72cdf0e10cSrcweir        $(SLO)$/docsh6.obj   	\
73cdf0e10cSrcweir        $(SLO)$/docsh7.obj   	\
74cdf0e10cSrcweir        $(SLO)$/docsh8.obj   	\
75cdf0e10cSrcweir        $(SLO)$/externalrefmgr.obj \
76cdf0e10cSrcweir        $(SLO)$/tablink.obj   	\
77cdf0e10cSrcweir        $(SLO)$/arealink.obj   	\
78cdf0e10cSrcweir        $(SLO)$/dbdocfun.obj 	\
79cdf0e10cSrcweir        $(SLO)$/dbdocimp.obj 	\
80cdf0e10cSrcweir        $(SLO)$/impex.obj	\
81cdf0e10cSrcweir        $(SLO)$/docfunc.obj	\
82cdf0e10cSrcweir        $(SLO)$/olinefun.obj	\
83cdf0e10cSrcweir        $(SLO)$/servobj.obj	\
84cdf0e10cSrcweir        $(SLO)$/tpstat.obj	\
85cdf0e10cSrcweir        $(SLO)$/autostyl.obj	\
86cdf0e10cSrcweir        $(SLO)$/pagedata.obj \
87cdf0e10cSrcweir        $(SLO)$/hiranges.obj \
88cdf0e10cSrcweir        $(SLO)$/pntlock.obj \
89cdf0e10cSrcweir        $(SLO)$/sizedev.obj \
90cdf0e10cSrcweir        $(SLO)$/editable.obj
91cdf0e10cSrcweir
92cdf0e10cSrcweir
93cdf0e10cSrcweirEXCEPTIONSFILES= \
94cdf0e10cSrcweir        $(SLO)$/docsh.obj \
95cdf0e10cSrcweir        $(SLO)$/docsh3.obj	\
96cdf0e10cSrcweir        $(SLO)$/docsh4.obj \
97cdf0e10cSrcweir        $(SLO)$/docsh5.obj   	\
98cdf0e10cSrcweir        $(SLO)$/docsh8.obj \
99cdf0e10cSrcweir        $(SLO)$/externalrefmgr.obj \
100cdf0e10cSrcweir        $(SLO)$/dbdocimp.obj \
101cdf0e10cSrcweir        $(SLO)$/docfunc.obj
102cdf0e10cSrcweir
103cdf0e10cSrcweirSRS1NAME=$(TARGET)
104cdf0e10cSrcweirSRC1FILES =  tpstat.src
105cdf0e10cSrcweir
106cdf0e10cSrcweirLIB1TARGET = $(SLB)$/$(TARGET).lib
107cdf0e10cSrcweir
108cdf0e10cSrcweirLIB1OBJFILES =  \
109cdf0e10cSrcweir        $(SLO)$/docsh.obj	\
110cdf0e10cSrcweir        $(SLO)$/docsh2.obj	\
111cdf0e10cSrcweir        $(SLO)$/docsh3.obj	\
112cdf0e10cSrcweir        $(SLO)$/docsh4.obj   	\
113cdf0e10cSrcweir        $(SLO)$/docsh5.obj   	\
114cdf0e10cSrcweir        $(SLO)$/docsh6.obj   	\
115cdf0e10cSrcweir        $(SLO)$/docsh7.obj   	\
116cdf0e10cSrcweir        $(SLO)$/docsh8.obj   	\
117cdf0e10cSrcweir        $(SLO)$/externalrefmgr.obj \
118cdf0e10cSrcweir        $(SLO)$/tablink.obj   	\
119cdf0e10cSrcweir        $(SLO)$/arealink.obj   	\
120cdf0e10cSrcweir        $(SLO)$/dbdocfun.obj 	\
121cdf0e10cSrcweir        $(SLO)$/dbdocimp.obj 	\
122cdf0e10cSrcweir        $(SLO)$/impex.obj	\
123cdf0e10cSrcweir        $(SLO)$/docfunc.obj	\
124cdf0e10cSrcweir        $(SLO)$/olinefun.obj	\
125cdf0e10cSrcweir        $(SLO)$/servobj.obj	\
126cdf0e10cSrcweir        $(SLO)$/autostyl.obj	\
127cdf0e10cSrcweir        $(SLO)$/pagedata.obj \
128cdf0e10cSrcweir        $(SLO)$/hiranges.obj \
129cdf0e10cSrcweir        $(SLO)$/pntlock.obj \
130cdf0e10cSrcweir        $(SLO)$/sizedev.obj \
131cdf0e10cSrcweir        $(SLO)$/editable.obj
132cdf0e10cSrcweir
133cdf0e10cSrcweir# --- Tagets -------------------------------------------------------
134cdf0e10cSrcweir
135cdf0e10cSrcweir.INCLUDE :  target.mk
136cdf0e10cSrcweir
137