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