1*cdf0e10cSrcweir#************************************************************************* 2*cdf0e10cSrcweir# 3*cdf0e10cSrcweir# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir# 5*cdf0e10cSrcweir# Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir# 7*cdf0e10cSrcweir# OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir# 9*cdf0e10cSrcweir# This file is part of OpenOffice.org. 10*cdf0e10cSrcweir# 11*cdf0e10cSrcweir# OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir# it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir# only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir# 15*cdf0e10cSrcweir# OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir# but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir# GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir# (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir# 21*cdf0e10cSrcweir# You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir# version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir# <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir# for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir# 26*cdf0e10cSrcweir#************************************************************************* 27*cdf0e10cSrcweir 28*cdf0e10cSrcweirPRJ=..$/..$/.. 29*cdf0e10cSrcweir 30*cdf0e10cSrcweirPRJNAME=desktop 31*cdf0e10cSrcweirTARGET=applauncher 32*cdf0e10cSrcweirLIBTARGET=NO 33*cdf0e10cSrcweirTARGETTYPE=GUI 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir# --- Settings ----------------------------------------------------- 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir.INCLUDE : settings.mk 38*cdf0e10cSrcweir 39*cdf0e10cSrcweir# --- Files -------------------------------------------------------- 40*cdf0e10cSrcweir 41*cdf0e10cSrcweirOBJFILES= \ 42*cdf0e10cSrcweir $(OBJ)$/launcher.obj \ 43*cdf0e10cSrcweir $(OBJ)$/swriter.obj \ 44*cdf0e10cSrcweir $(OBJ)$/scalc.obj \ 45*cdf0e10cSrcweir $(OBJ)$/sdraw.obj \ 46*cdf0e10cSrcweir $(OBJ)$/simpress.obj \ 47*cdf0e10cSrcweir $(OBJ)$/sbase.obj \ 48*cdf0e10cSrcweir $(OBJ)$/smath.obj \ 49*cdf0e10cSrcweir $(OBJ)$/officeloader.obj \ 50*cdf0e10cSrcweir $(OBJ)$/os2quickstart.obj 51*cdf0e10cSrcweir 52*cdf0e10cSrcweirAPP1TARGET=swriter 53*cdf0e10cSrcweirAPP1NOSAL=TRUE 54*cdf0e10cSrcweirAPP1LINKRES=$(MISC)$/$(TARGET)1.res 55*cdf0e10cSrcweirAPP1ICON=$(SOLARRESDIR)$/icons$/ooo-writer-app.ico 56*cdf0e10cSrcweirAPP1OBJS = \ 57*cdf0e10cSrcweir $(OBJ)$/launcher.obj\ 58*cdf0e10cSrcweir $(OBJ)$/swriter.obj 59*cdf0e10cSrcweir 60*cdf0e10cSrcweir 61*cdf0e10cSrcweirAPP2TARGET=scalc 62*cdf0e10cSrcweirAPP2NOSAL=TRUE 63*cdf0e10cSrcweirAPP2LINKRES=$(MISC)$/$(TARGET)2.res 64*cdf0e10cSrcweirAPP2ICON=$(SOLARRESDIR)$/icons$/ooo-calc-app.ico 65*cdf0e10cSrcweirAPP2OBJS = \ 66*cdf0e10cSrcweir $(OBJ)$/launcher.obj\ 67*cdf0e10cSrcweir $(OBJ)$/scalc.obj 68*cdf0e10cSrcweir 69*cdf0e10cSrcweirAPP3TARGET=sdraw 70*cdf0e10cSrcweirAPP3NOSAL=TRUE 71*cdf0e10cSrcweirAPP3LINKRES=$(MISC)$/$(TARGET)3.res 72*cdf0e10cSrcweirAPP3ICON=$(SOLARRESDIR)$/icons$/ooo-draw-app.ico 73*cdf0e10cSrcweirAPP3OBJS = \ 74*cdf0e10cSrcweir $(OBJ)$/launcher.obj\ 75*cdf0e10cSrcweir $(OBJ)$/sdraw.obj 76*cdf0e10cSrcweir 77*cdf0e10cSrcweirAPP4TARGET=simpress 78*cdf0e10cSrcweirAPP4NOSAL=TRUE 79*cdf0e10cSrcweirAPP4LINKRES=$(MISC)$/$(TARGET)4.res 80*cdf0e10cSrcweirAPP4ICON=$(SOLARRESDIR)$/icons$/ooo-impress-app.ico 81*cdf0e10cSrcweirAPP4OBJS = \ 82*cdf0e10cSrcweir $(OBJ)$/launcher.obj\ 83*cdf0e10cSrcweir $(OBJ)$/simpress.obj 84*cdf0e10cSrcweir 85*cdf0e10cSrcweirAPP5TARGET=sbase 86*cdf0e10cSrcweirAPP5NOSAL=TRUE 87*cdf0e10cSrcweirAPP5LINKRES=$(MISC)$/$(TARGET)5.res 88*cdf0e10cSrcweirAPP5ICON=$(SOLARRESDIR)$/icons$/ooo-base-app.ico 89*cdf0e10cSrcweirAPP5OBJS = \ 90*cdf0e10cSrcweir $(OBJ)$/launcher.obj\ 91*cdf0e10cSrcweir $(OBJ)$/sbase.obj 92*cdf0e10cSrcweir 93*cdf0e10cSrcweirAPP6TARGET=smath 94*cdf0e10cSrcweirAPP6NOSAL=TRUE 95*cdf0e10cSrcweirAPP6LINKRES=$(MISC)$/$(TARGET)6.res 96*cdf0e10cSrcweirAPP6ICON=$(SOLARRESDIR)$/icons$/ooo-math-app.ico 97*cdf0e10cSrcweirAPP6OBJS = \ 98*cdf0e10cSrcweir $(OBJ)$/launcher.obj\ 99*cdf0e10cSrcweir $(OBJ)$/smath.obj 100*cdf0e10cSrcweir 101*cdf0e10cSrcweirAPP7TARGET=officeloader 102*cdf0e10cSrcweirAPP7NOSAL=TRUE 103*cdf0e10cSrcweirAPP7LINKRES=$(MISC)$/$(TARGET)7.res 104*cdf0e10cSrcweirAPP7ICON=$(SOLARRESDIR)$/icons$/ooo-main-app.ico 105*cdf0e10cSrcweirAPP7OBJS = \ 106*cdf0e10cSrcweir $(OBJ)$/launcher.obj\ 107*cdf0e10cSrcweir $(OBJ)$/officeloader.obj 108*cdf0e10cSrcweir 109*cdf0e10cSrcweirAPP8TARGET=os2quickstart 110*cdf0e10cSrcweirAPP8NOSAL=TRUE 111*cdf0e10cSrcweirAPP8LINKRES=$(MISC)$/$(TARGET)8.res 112*cdf0e10cSrcweirAPP8ICON=$(SOLARRESDIR)$/icons$/ooo-main-app.ico 113*cdf0e10cSrcweirAPP8OBJS = \ 114*cdf0e10cSrcweir $(OBJ)$/launcher.obj\ 115*cdf0e10cSrcweir $(OBJ)$/os2quickstart.obj 116*cdf0e10cSrcweir 117*cdf0e10cSrcweir# --- Targets ------------------------------------------------------ 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir 120*cdf0e10cSrcweir.INCLUDE : target.mk 121*cdf0e10cSrcweir 122