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
30UWINAPILIB=
31
32# --- Settings -----------------------------------------------------
33
34.INCLUDE :  settings.mk
35
36# --- Files --------------------------------------------------------
37
38APP1TARGET=swriter
39APP1DEPN=verinfo.rc
40APP1VERINFO=verinfo.rc
41APP1NOSAL=TRUE
42APP1LINKRES=$(MISC)$/$(TARGET)1.res
43APP1ICON=$(SOLARRESDIR)$/icons/ooo3_writer_app.ico
44APP1OBJS = \
45		$(OBJ)$/launcher.obj\
46        $(OBJ)$/swriter.obj
47APP1STDLIBS = $(SHELL32LIB)
48APP1PRODUCTDEF+=-DRES_APP_NAME=$(APP1TARGET)
49
50APP2TARGET=scalc
51APP2DEPN=verinfo.rc
52APP2VERINFO=verinfo.rc
53APP2NOSAL=TRUE
54APP2LINKRES=$(MISC)$/$(TARGET)2.res
55APP2ICON=$(SOLARRESDIR)$/icons/ooo3_calc_app.ico
56APP2OBJS = \
57		$(OBJ)$/launcher.obj\
58        $(OBJ)$/scalc.obj
59APP2STDLIBS = $(SHELL32LIB)
60APP2PRODUCTDEF+=-DRES_APP_NAME=$(APP2TARGET)
61
62APP3TARGET=sdraw
63APP3DEPN=verinfo.rc
64APP3VERINFO=verinfo.rc
65APP3NOSAL=TRUE
66APP3LINKRES=$(MISC)$/$(TARGET)3.res
67APP3ICON=$(SOLARRESDIR)$/icons/ooo3_draw_app.ico
68APP3OBJS = \
69		$(OBJ)$/launcher.obj\
70        $(OBJ)$/sdraw.obj
71APP3STDLIBS = $(SHELL32LIB)
72APP3PRODUCTDEF+=-DRES_APP_NAME=$(APP3TARGET)
73
74APP4TARGET=simpress
75APP4DEPN=verinfo.rc
76APP4VERINFO=verinfo.rc
77APP4NOSAL=TRUE
78APP4LINKRES=$(MISC)$/$(TARGET)4.res
79APP4ICON=$(SOLARRESDIR)$/icons/ooo3_impress_app.ico
80APP4OBJS = \
81		$(OBJ)$/launcher.obj\
82        $(OBJ)$/simpress.obj
83APP4STDLIBS = $(SHELL32LIB)
84APP4PRODUCTDEF+=-DRES_APP_NAME=$(APP4TARGET)
85
86APP5TARGET=smath
87APP5DEPN=verinfo.rc
88APP5VERINFO=verinfo.rc
89APP5NOSAL=TRUE
90APP5LINKRES=$(MISC)$/$(TARGET)5.res
91APP5ICON=$(SOLARRESDIR)$/icons/ooo3_math_app.ico
92APP5OBJS = \
93		$(OBJ)$/launcher.obj\
94        $(OBJ)$/smath.obj
95APP5STDLIBS = $(SHELL32LIB)
96APP5PRODUCTDEF+=-DRES_APP_NAME=$(APP5TARGET)
97
98APP6TARGET=sbase
99APP6DEPN=verinfo.rc
100APP6VERINFO=verinfo.rc
101APP6NOSAL=TRUE
102APP6LINKRES=$(MISC)$/$(TARGET)6.res
103APP6ICON=$(SOLARRESDIR)$/icons/ooo3_base_app.ico
104APP6OBJS = \
105		$(OBJ)$/launcher.obj\
106       $(OBJ)$/sbase.obj
107APP6STDLIBS = $(SHELL32LIB)
108APP6PRODUCTDEF+=-DRES_APP_NAME=$(APP6TARGET)
109
110APP7TARGET=sweb
111APP7DEPN=verinfo.rc
112APP7VERINFO=verinfo.rc
113APP7NOSAL=TRUE
114APP7LINKRES=$(MISC)$/$(TARGET)7.res
115APP7ICON=$(SOLARRESDIR)$/icons/ooo3_writer_app.ico
116APP7OBJS = \
117		$(OBJ)$/launcher.obj\
118       $(OBJ)$/sweb.obj
119APP7STDLIBS = $(SHELL32LIB)
120APP7PRODUCTDEF+=-DRES_APP_NAME=$(APP7TARGET)
121
122# --- Targets ------------------------------------------------------
123
124
125.INCLUDE :  target.mk
126
127