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 = ..$/..$/..
25
26PRJNAME = desktop
27TARGET = deployment_misc
28USE_DEFFILE = TRUE
29ENABLE_EXCEPTIONS = TRUE
30VISIBILITY_HIDDEN=TRUE
31
32.IF "$(GUI)"=="OS2"
33TARGET = deplmisc
34.ENDIF
35
36.INCLUDE : settings.mk
37
38# Reduction of exported symbols:
39CDEFS += -DDESKTOP_DEPLOYMENTMISC_DLLIMPLEMENTATION
40
41SRS1NAME = $(TARGET)
42SRC1FILES = \
43	dp_misc.src
44
45.IF "$(GUI)"=="OS2"
46SHL1TARGET = $(TARGET)
47.ELSE
48SHL1TARGET = deploymentmisc$(DLLPOSTFIX)
49.ENDIF
50SHL1OBJS = \
51        $(SLO)$/dp_misc.obj \
52        $(SLO)$/dp_resource.obj \
53        $(SLO)$/dp_identifier.obj \
54        $(SLO)$/dp_interact.obj \
55        $(SLO)$/dp_ucb.obj \
56        $(SLO)$/dp_version.obj \
57        $(SLO)$/dp_descriptioninfoset.obj \
58        $(SLO)$/dp_dependencies.obj \
59        $(SLO)$/dp_platform.obj \
60        $(SLO)$/dp_update.obj
61
62SHL1STDLIBS = \
63    $(CPPUHELPERLIB) \
64    $(CPPULIB) \
65    $(SALLIB) \
66    $(TOOLSLIB) \
67    $(UCBHELPERLIB) \
68    $(UNOTOOLSLIB) \
69    $(XMLSCRIPTLIB) \
70    $(COMPHELPERLIB)
71.IF "$(GUI)"=="OS2"
72SHL1IMPLIB = ideploymentmisc$(DLLPOSTFIX)
73LIB1TARGET = $(SLB)$/_deplmisc.lib
74LIB1OBJFILES = $(SHL1OBJS)
75DEFLIB1NAME = _deplmisc
76.ELSE
77SHL1IMPLIB = i$(SHL1TARGET)
78.ENDIF
79DEF1NAME = $(SHL1TARGET)
80
81SLOFILES = $(SHL1OBJS)
82
83.INCLUDE : ..$/target.pmk
84.INCLUDE : target.mk
85
86