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#************************************************************************* 27PRJ=..$/.. 28 29PRJNAME=bridges 30TARGET=inter 31LIBTARGET=NO 32TARGETTYPE=CUI 33ENABLE_EXCEPTIONS=TRUE 34USE_DEFFILE=TRUE 35 36# --- Settings ----------------------------------------------------- 37 38.INCLUDE : settings.mk 39 40# --- Files -------------------------------------------------------- 41 42UNOUCRDEP=$(SOLARBINDIR)$/udkapi.rdb 43UNOUCRRDB=$(SOLARBINDIR)$/udkapi.rdb 44 45# output directory (one dir for each project) 46UNOUCROUT=$(OUT)$/inc$/$(TARGET) 47 48# adding to inludeoath 49INCPRE+=$(UNOUCROUT) 50 51UNOTYPESTYPES := \ 52 com.sun.star.lang.IllegalArgumentException \ 53 com.sun.star.uno.DeploymentException 54 55SLOFILES=$(SLO)$/starter.obj $(SLO)$/thrower.obj 56 57SHL1TARGET=starter 58SHL1DEF=$(MISC)$/$(SHL1TARGET).def 59SHL1IMPLIB=i$(SHL1TARGET) 60SHL1OBJS=$(SLO)$/starter.obj 61DEF1NAME=$(SHL1TARGET) 62SHL1STDLIBS+= $(CPPULIB) $(SALLIB) 63SHL1VERSIONMAP=$(SHL1TARGET).map 64 65SHL2TARGET=thrower 66SHL2DEF=$(MISC)$/$(SHL2TARGET).def 67SHL2IMPLIB=i$(SHL2TARGET) 68SHL2OBJS=$(SLO)$/thrower.obj 69DEF2NAME=$(SHL2TARGET) 70SHL2STDLIBS+= $(CPPULIB) $(SALLIB) 71SHL2VERSIONMAP=$(SHL2TARGET).map 72 73OBJFILES=$(OBJ)$/inter.obj 74APP1TARGET=inter 75APP1OBJS=$(OBJ)$/inter.obj 76APP1STDLIBS+=\ 77 $(SALLIB) 78 79.INCLUDE : target.mk 80 81