2002-09-10 03:39:15 -05:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-11 05:48:24 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2010-02-12 08:01:35 -06:00
|
|
|
# Copyright 2000, 2010 Oracle and/or its affiliates.
|
2002-09-10 03:39:15 -05:00
|
|
|
#
|
2008-04-11 05:48:24 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2002-09-10 03:39:15 -05:00
|
|
|
#
|
2008-04-11 05:48:24 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2002-09-10 03:39:15 -05:00
|
|
|
#
|
2008-04-11 05:48:24 -05:00
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
2002-09-10 03:39:15 -05:00
|
|
|
#
|
2008-04-11 05:48:24 -05:00
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2002-09-10 03:39:15 -05:00
|
|
|
#
|
2008-04-11 05:48:24 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2002-09-10 03:39:15 -05:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
PRJ=..$/..
|
|
|
|
|
|
|
|
PRJNAME=cpputools
|
|
|
|
TARGET=regsingleton
|
|
|
|
LIBTARGET=NO
|
|
|
|
ENABLE_EXCEPTIONS=TRUE
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
|
2011-11-25 16:30:40 -06:00
|
|
|
.IF "$(OS)" == "IOS"
|
|
|
|
ALL:
|
|
|
|
@echo Nothing done for $(OS)
|
|
|
|
.ENDIF
|
|
|
|
|
2002-09-10 03:39:15 -05:00
|
|
|
UNOUCRDEP=$(SOLARBINDIR)$/udkapi.rdb
|
|
|
|
UNOUCRRDB=$(SOLARBINDIR)$/udkapi.rdb
|
|
|
|
|
2006-05-24 08:30:26 -05:00
|
|
|
NO_OFFUH=TRUE
|
2002-09-10 03:39:15 -05:00
|
|
|
CPPUMAKERFLAGS+= -C
|
|
|
|
|
|
|
|
UNOTYPES= \
|
|
|
|
com.sun.star.uno.TypeClass \
|
|
|
|
com.sun.star.uno.XAggregation \
|
|
|
|
com.sun.star.uno.XWeak \
|
|
|
|
com.sun.star.uno.XComponentContext \
|
|
|
|
com.sun.star.lang.XTypeProvider \
|
|
|
|
com.sun.star.lang.XComponent \
|
|
|
|
com.sun.star.lang.XSingleServiceFactory \
|
|
|
|
com.sun.star.lang.XSingleComponentFactory \
|
|
|
|
com.sun.star.lang.XMultiServiceFactory \
|
|
|
|
com.sun.star.lang.XMultiComponentFactory \
|
|
|
|
com.sun.star.container.XHierarchicalNameAccess \
|
|
|
|
com.sun.star.registry.XSimpleRegistry \
|
|
|
|
com.sun.star.registry.XRegistryKey
|
|
|
|
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
2003-12-16 04:45:17 -06:00
|
|
|
DEPOBJFILES= \
|
|
|
|
$(OBJ)$/regsingleton.obj
|
2002-09-10 03:39:15 -05:00
|
|
|
|
|
|
|
APP1TARGET=$(TARGET)
|
2003-12-16 04:45:17 -06:00
|
|
|
APP1OBJS=$(DEPOBJFILES)
|
2002-09-10 03:39:15 -05:00
|
|
|
|
|
|
|
APP1STDLIBS= \
|
|
|
|
$(SALLIB) \
|
|
|
|
$(CPPULIB) \
|
|
|
|
$(CPPUHELPERLIB)
|
|
|
|
|
2002-09-11 02:24:34 -05:00
|
|
|
.IF "$(debug)" != ""
|
|
|
|
.IF "$(COM)" == "MSC"
|
|
|
|
CFLAGS += -Ob0
|
|
|
|
.ENDIF
|
|
|
|
.ENDIF
|
|
|
|
|
2002-09-10 03:39:15 -05:00
|
|
|
.INCLUDE : target.mk
|
|
|
|
|