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 = deployment_misc 32USE_DEFFILE = TRUE 33ENABLE_EXCEPTIONS = TRUE 34VISIBILITY_HIDDEN=TRUE 35 36.IF "$(GUI)"=="OS2" 37TARGET = deplmisc 38.ENDIF 39 40.INCLUDE : settings.mk 41 42# Reduction of exported symbols: 43CDEFS += -DDESKTOP_DEPLOYMENTMISC_DLLIMPLEMENTATION 44 45SRS1NAME = $(TARGET) 46SRC1FILES = \ 47 dp_misc.src 48 49.IF "$(GUI)"=="OS2" 50SHL1TARGET = $(TARGET) 51.ELSE 52SHL1TARGET = deploymentmisc$(DLLPOSTFIX) 53.ENDIF 54SHL1OBJS = \ 55 $(SLO)$/dp_misc.obj \ 56 $(SLO)$/dp_resource.obj \ 57 $(SLO)$/dp_identifier.obj \ 58 $(SLO)$/dp_interact.obj \ 59 $(SLO)$/dp_ucb.obj \ 60 $(SLO)$/dp_version.obj \ 61 $(SLO)$/dp_descriptioninfoset.obj \ 62 $(SLO)$/dp_dependencies.obj \ 63 $(SLO)$/dp_platform.obj \ 64 $(SLO)$/dp_update.obj 65 66SHL1STDLIBS = \ 67 $(CPPUHELPERLIB) \ 68 $(CPPULIB) \ 69 $(SALLIB) \ 70 $(TOOLSLIB) \ 71 $(UCBHELPERLIB) \ 72 $(UNOTOOLSLIB) \ 73 $(XMLSCRIPTLIB) \ 74 $(COMPHELPERLIB) 75.IF "$(GUI)"=="OS2" 76SHL1IMPLIB = ideploymentmisc$(DLLPOSTFIX) 77LIB1TARGET = $(SLB)$/_deplmisc.lib 78LIB1OBJFILES = $(SHL1OBJS) 79DEFLIB1NAME = _deplmisc 80.ELSE 81SHL1IMPLIB = i$(SHL1TARGET) 82.ENDIF 83DEF1NAME = $(SHL1TARGET) 84 85SLOFILES = $(SHL1OBJS) 86 87.INCLUDE : ..$/target.pmk 88.INCLUDE : target.mk 89 90