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=applauncher
28LIBTARGET=NO
29TARGETTYPE=GUI
30
31# --- Settings -----------------------------------------------------
32
33.INCLUDE :  settings.mk
34
35# --- Files --------------------------------------------------------
36
37OBJFILES= \
38    $(OBJ)$/launcher.obj \
39    $(OBJ)$/swriter.obj \
40    $(OBJ)$/scalc.obj \
41    $(OBJ)$/sdraw.obj \
42    $(OBJ)$/simpress.obj \
43    $(OBJ)$/sbase.obj \
44    $(OBJ)$/smath.obj \
45    $(OBJ)$/officeloader.obj \
46    $(OBJ)$/os2quickstart.obj
47
48APP1TARGET=swriter
49APP1NOSAL=TRUE
50APP1LINKRES=$(MISC)$/$(TARGET)1.res
51APP1ICON=$(SOLARRESDIR)$/icons$/ooo-writer-app.ico
52APP1OBJS = \
53		$(OBJ)$/launcher.obj\
54        $(OBJ)$/swriter.obj
55
56
57APP2TARGET=scalc
58APP2NOSAL=TRUE
59APP2LINKRES=$(MISC)$/$(TARGET)2.res
60APP2ICON=$(SOLARRESDIR)$/icons$/ooo-calc-app.ico
61APP2OBJS = \
62		$(OBJ)$/launcher.obj\
63        $(OBJ)$/scalc.obj
64
65APP3TARGET=sdraw
66APP3NOSAL=TRUE
67APP3LINKRES=$(MISC)$/$(TARGET)3.res
68APP3ICON=$(SOLARRESDIR)$/icons$/ooo-draw-app.ico
69APP3OBJS = \
70		$(OBJ)$/launcher.obj\
71        $(OBJ)$/sdraw.obj
72
73APP4TARGET=simpress
74APP4NOSAL=TRUE
75APP4LINKRES=$(MISC)$/$(TARGET)4.res
76APP4ICON=$(SOLARRESDIR)$/icons$/ooo-impress-app.ico
77APP4OBJS = \
78		$(OBJ)$/launcher.obj\
79        $(OBJ)$/simpress.obj
80
81APP5TARGET=sbase
82APP5NOSAL=TRUE
83APP5LINKRES=$(MISC)$/$(TARGET)5.res
84APP5ICON=$(SOLARRESDIR)$/icons$/ooo-base-app.ico
85APP5OBJS = \
86		$(OBJ)$/launcher.obj\
87        $(OBJ)$/sbase.obj
88
89APP6TARGET=smath
90APP6NOSAL=TRUE
91APP6LINKRES=$(MISC)$/$(TARGET)6.res
92APP6ICON=$(SOLARRESDIR)$/icons$/ooo-math-app.ico
93APP6OBJS = \
94		$(OBJ)$/launcher.obj\
95        $(OBJ)$/smath.obj
96
97APP7TARGET=officeloader
98APP7NOSAL=TRUE
99APP7LINKRES=$(MISC)$/$(TARGET)7.res
100APP7ICON=$(SOLARRESDIR)$/icons$/ooo-main-app.ico
101APP7OBJS = \
102		$(OBJ)$/launcher.obj\
103        $(OBJ)$/officeloader.obj
104
105APP8TARGET=os2quickstart
106APP8NOSAL=TRUE
107APP8LINKRES=$(MISC)$/$(TARGET)8.res
108APP8ICON=$(SOLARRESDIR)$/icons$/ooo-main-app.ico
109APP8OBJS = \
110		$(OBJ)$/launcher.obj\
111        $(OBJ)$/os2quickstart.obj
112
113# --- Targets ------------------------------------------------------
114
115
116.INCLUDE :  target.mk
117
118