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