diff options
Diffstat (limited to 'embeddedobj')
-rw-r--r-- | embeddedobj/Library_embobj.mk | 65 | ||||
-rw-r--r-- | embeddedobj/Library_emboleobj.mk | 89 | ||||
-rw-r--r-- | embeddedobj/Makefile | 7 | ||||
-rw-r--r-- | embeddedobj/Module_embeddedobj.mk | 35 | ||||
-rwxr-xr-x | embeddedobj/inc/makefile.mk | 39 | ||||
-rw-r--r-- | embeddedobj/prj/build.lst | 7 | ||||
-rw-r--r-- | embeddedobj/prj/d.lst | 8 | ||||
-rwxr-xr-x | embeddedobj/prj/l10n | 1 | ||||
-rw-r--r-- | embeddedobj/prj/makefile.mk | 1 | ||||
-rwxr-xr-x | embeddedobj/source/commonembedding/makefile.mk | 56 | ||||
-rwxr-xr-x | embeddedobj/source/general/makefile.mk | 60 | ||||
-rwxr-xr-x | embeddedobj/source/msole/exports.dxp | 1 | ||||
-rwxr-xr-x | embeddedobj/source/msole/makefile.mk | 136 | ||||
-rwxr-xr-x | embeddedobj/util/exports.dxp | 1 | ||||
-rwxr-xr-x | embeddedobj/util/makefile.mk | 95 |
15 files changed, 198 insertions, 403 deletions
diff --git a/embeddedobj/Library_embobj.mk b/embeddedobj/Library_embobj.mk new file mode 100644 index 000000000000..b820eb69b89c --- /dev/null +++ b/embeddedobj/Library_embobj.mk @@ -0,0 +1,65 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# Major Contributor(s): +# Copyright (C) 2012 Matúš Kukan <matus.kukan@gmail.com> (initial developer) +# +# All Rights Reserved. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. + +$(eval $(call gb_Library_Library,embobj)) + +$(eval $(call gb_Library_set_componentfile,embobj,embeddedobj/util/embobj)) + +$(eval $(call gb_Library_set_include,embobj,\ + -I$(SRCDIR)/embeddedobj/source/inc \ + $$(INCLUDE) \ +)) + +$(eval $(call gb_Library_add_api,embobj,\ + offapi \ + udkapi \ +)) + +$(eval $(call gb_Library_add_linked_libs,embobj,\ + comphelper \ + cppu \ + cppuhelper \ + sal \ + $(gb_STDLIBS) \ +)) + +$(eval $(call gb_Library_add_exception_objects,embobj,\ + embeddedobj/source/commonembedding/embedobj \ + embeddedobj/source/commonembedding/inplaceobj \ + embeddedobj/source/commonembedding/miscobj \ + embeddedobj/source/commonembedding/persistence \ + embeddedobj/source/commonembedding/register \ + embeddedobj/source/commonembedding/specialobject \ + embeddedobj/source/commonembedding/visobj \ + embeddedobj/source/commonembedding/xfactory \ + embeddedobj/source/general/docholder \ + embeddedobj/source/general/dummyobject \ + embeddedobj/source/general/intercept \ + embeddedobj/source/general/xcreator \ +)) + +# vim: set noet sw=4 ts=4: diff --git a/embeddedobj/Library_emboleobj.mk b/embeddedobj/Library_emboleobj.mk new file mode 100644 index 000000000000..4889693e4c9a --- /dev/null +++ b/embeddedobj/Library_emboleobj.mk @@ -0,0 +1,89 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# Major Contributor(s): +# Copyright (C) 2012 Matúš Kukan <matus.kukan@gmail.com> (initial developer) +# +# All Rights Reserved. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. + +$(eval $(call gb_Library_Library,emboleobj)) + +ifeq ($(OS),WNT) +emboleobj_suffix := .windows +else +emboleobj_suffix := +endif + +$(eval $(call gb_Library_set_componentfile,emboleobj,embeddedobj/source/msole/emboleobj$(emboleobj_suffix))) + +$(eval $(call gb_Library_set_include,emboleobj,\ + -I$(SRCDIR)/embeddedobj/source/inc \ + $$(INCLUDE) \ +)) + +$(eval $(call gb_Library_add_api,emboleobj,\ + offapi \ + udkapi \ +)) + +$(eval $(call gb_Library_add_linked_libs,emboleobj,\ + comphelper \ + cppu \ + cppuhelper \ + sal \ + tl \ + utl \ + $(gb_STDLIBS) \ +)) + +$(eval $(call gb_Library_add_exception_objects,emboleobj,\ + embeddedobj/source/msole/closepreventer \ + embeddedobj/source/msole/oleembed \ + embeddedobj/source/msole/olemisc \ + embeddedobj/source/msole/olepersist \ + embeddedobj/source/msole/oleregister \ + embeddedobj/source/msole/olevisual \ + embeddedobj/source/msole/ownview \ + embeddedobj/source/msole/xolefactory \ +)) + +ifeq ($(OS),WNT) + +$(eval $(call gb_Library_add_linked_libs,emboleobj,\ + embobj \ + gdi32 \ + ole32 \ + oleaut32 \ + uuid \ +)) + +$(eval $(call gb_Library_add_exception_objects,emboleobj,\ + embeddedobj/source/msole/advisesink \ + embeddedobj/source/msole/graphconvert \ + embeddedobj/source/msole/olecomponent \ + embeddedobj/source/msole/olewrapclient \ + embeddedobj/source/msole/xdialogcreator \ +)) + +endif + +# vim: set noet sw=4 ts=4: diff --git a/embeddedobj/Makefile b/embeddedobj/Makefile new file mode 100644 index 000000000000..ccb1c85a04da --- /dev/null +++ b/embeddedobj/Makefile @@ -0,0 +1,7 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- + +module_directory:=$(dir $(realpath $(firstword $(MAKEFILE_LIST)))) + +include $(module_directory)/../solenv/gbuild/partial_build.mk + +# vim: set noet sw=4 ts=4: diff --git a/embeddedobj/Module_embeddedobj.mk b/embeddedobj/Module_embeddedobj.mk new file mode 100644 index 000000000000..5e811da8e7ac --- /dev/null +++ b/embeddedobj/Module_embeddedobj.mk @@ -0,0 +1,35 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# Major Contributor(s): +# Copyright (C) 2012 Matúš Kukan <matus.kukan@gmail.com> (initial developer) +# +# All Rights Reserved. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. + +$(eval $(call gb_Module_Module,embeddedobj)) + +$(eval $(call gb_Module_add_targets,embeddedobj,\ + Library_embobj \ + Library_emboleobj \ +)) + +# vim: set noet sw=4 ts=4: diff --git a/embeddedobj/inc/makefile.mk b/embeddedobj/inc/makefile.mk deleted file mode 100755 index 060094cf563d..000000000000 --- a/embeddedobj/inc/makefile.mk +++ /dev/null @@ -1,39 +0,0 @@ -#************************************************************************* -# -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# This file is part of OpenOffice.org. -# -# 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. -# -# 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). -# -# 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. -# -#************************************************************************* -PRJ=.. - -PRJNAME=embeddedobj -TARGET=embeddedobj - -# --- Settings ----------------------------------------------------- - -.INCLUDE : settings.mk - -# --- Files -------------------------------------------------------- -# --- Targets ------------------------------------------------------- - -.INCLUDE : target.mk diff --git a/embeddedobj/prj/build.lst b/embeddedobj/prj/build.lst index af0d8e1f79df..eed683e832fa 100644 --- a/embeddedobj/prj/build.lst +++ b/embeddedobj/prj/build.lst @@ -1,7 +1,2 @@ eo embeddedobj : offapi sal cppu cppuhelper comphelper tools unotools LIBXSLT:libxslt NULL -eo embeddedobj usr1 - all eo_mkout NULL -eo embeddedobj\inc nmake - all eo_inc NULL -eo embeddedobj\source\commonembedding nmake - all eo_commonembed eo_inc NULL -eo embeddedobj\source\general nmake - all eo_general eo_inc NULL -eo embeddedobj\util nmake - all eo_util eo_commonembed eo_general eo_inc NULL -eo embeddedobj\source\msole nmake - all eo_msole eo_util eo_inc NULL +eo embeddedobj\prj nmake - all eo_prj NULL diff --git a/embeddedobj/prj/d.lst b/embeddedobj/prj/d.lst index 551439c6de9b..e69de29bb2d1 100644 --- a/embeddedobj/prj/d.lst +++ b/embeddedobj/prj/d.lst @@ -1,8 +0,0 @@ -mkdir: %_DEST%\xml\registry\spool -..\%__SRC%\misc\*.map %_DEST%\bin\*.map -..\%__SRC%\bin\*.dll %_DEST%\bin\*.dll -..\%__SRC%\lib\lib*.so %_DEST%\lib\lib*.so -..\%__SRC%\lib\*.dylib %_DEST%\lib\*.dylib -..\dtd\*.dtd %_DEST%\bin\*.* -..\%__SRC%\misc\embobj.component %_DEST%\xml\embobj.component -..\%__SRC%\misc\emboleobj.component %_DEST%\xml\emboleobj.component diff --git a/embeddedobj/prj/l10n b/embeddedobj/prj/l10n deleted file mode 100755 index 69f0d9e5e24e..000000000000 --- a/embeddedobj/prj/l10n +++ /dev/null @@ -1 +0,0 @@ -#i49922# In this module en-US and de are used as source language diff --git a/embeddedobj/prj/makefile.mk b/embeddedobj/prj/makefile.mk new file mode 100644 index 000000000000..0997622e00f6 --- /dev/null +++ b/embeddedobj/prj/makefile.mk @@ -0,0 +1 @@ +.INCLUDE : gbuildbridge.mk diff --git a/embeddedobj/source/commonembedding/makefile.mk b/embeddedobj/source/commonembedding/makefile.mk deleted file mode 100755 index d731b729d919..000000000000 --- a/embeddedobj/source/commonembedding/makefile.mk +++ /dev/null @@ -1,56 +0,0 @@ -#************************************************************************* -# -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# This file is part of OpenOffice.org. -# -# 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. -# -# 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). -# -# 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. -# -#************************************************************************* - -PRJ=..$/.. - -PRJNAME=embeddedobj -TARGET=commonembed -ENABLE_EXCEPTIONS=true - -# --- Settings ----------------------------------------------------- - -.INCLUDE : settings.mk - -LIBTARGET=NO -USE_DEFFILE=NO - -# --- Files -------------------------------------------------------- - -SLOFILES = \ - $(SLO)$/register.obj\ - $(SLO)$/xfactory.obj\ - $(SLO)$/miscobj.obj\ - $(SLO)$/embedobj.obj\ - $(SLO)$/specialobject.obj\ - $(SLO)$/persistence.obj\ - $(SLO)$/inplaceobj.obj\ - $(SLO)$/visobj.obj - -# --- Targets ------------------------------------------------------- - -.INCLUDE : target.mk - diff --git a/embeddedobj/source/general/makefile.mk b/embeddedobj/source/general/makefile.mk deleted file mode 100755 index 2aab0573588f..000000000000 --- a/embeddedobj/source/general/makefile.mk +++ /dev/null @@ -1,60 +0,0 @@ -#************************************************************************* -# -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# This file is part of OpenOffice.org. -# -# 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. -# -# 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). -# -# 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. -# -#************************************************************************* - -PRJ=..$/.. - -PRJNAME=embeddedobj -TARGET=embedobj - - -# --- Settings ----------------------------------------------------- - -.INCLUDE : settings.mk - -LIBTARGET=NO -USE_DEFFILE=NO - -# --- Files -------------------------------------------------------- - -SLOFILES = \ - $(SLO)$/xcreator.obj\ - $(SLO)$/docholder.obj\ - $(SLO)$/dummyobject.obj\ - $(SLO)$/intercept.obj - - -EXCEPTIONSFILES= \ - $(SLO)$/xcreator.obj\ - $(SLO)$/docholder.obj\ - $(SLO)$/dummyobject.obj\ - $(SLO)$/intercept.obj - - -# --- Targets ------------------------------------------------------- - -.INCLUDE : target.mk - diff --git a/embeddedobj/source/msole/exports.dxp b/embeddedobj/source/msole/exports.dxp deleted file mode 100755 index 70033078921a..000000000000 --- a/embeddedobj/source/msole/exports.dxp +++ /dev/null @@ -1 +0,0 @@ -component_getFactory diff --git a/embeddedobj/source/msole/makefile.mk b/embeddedobj/source/msole/makefile.mk deleted file mode 100755 index 09121474b132..000000000000 --- a/embeddedobj/source/msole/makefile.mk +++ /dev/null @@ -1,136 +0,0 @@ -#************************************************************************* -# -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# This file is part of OpenOffice.org. -# -# 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. -# -# 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). -# -# 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. -# -#************************************************************************* - -PRJ=..$/.. - -PRJNAME=embeddedobj -TARGET=emboleobj - - -# --- Settings ----------------------------------------------------- - -.INCLUDE : settings.mk - -# .IF "$(DISABLE_ATL)"=="" - -LIBTARGET=NO -USE_DEFFILE=YES - -# --- Files -------------------------------------------------------- - -SHL1TARGET= $(TARGET) - -SHL1IMPLIB= i$(TARGET) - -SLOFILES = \ - $(SLO)$/closepreventer.obj\ - $(SLO)$/oleregister.obj\ - $(SLO)$/xolefactory.obj\ - $(SLO)$/olepersist.obj\ - $(SLO)$/oleembed.obj\ - $(SLO)$/olevisual.obj\ - $(SLO)$/olemisc.obj\ - $(SLO)$/ownview.obj - -EXCEPTIONSFILES= \ - $(SLO)$/closepreventer.obj\ - $(SLO)$/oleregister.obj\ - $(SLO)$/xolefactory.obj\ - $(SLO)$/olepersist.obj\ - $(SLO)$/oleembed.obj\ - $(SLO)$/olevisual.obj\ - $(SLO)$/olemisc.obj\ - $(SLO)$/ownview.obj - -.IF "$(GUI)"=="WNT" - -SLOFILES += \ - $(SLO)$/graphconvert.obj\ - $(SLO)$/olecomponent.obj\ - $(SLO)$/olewrapclient.obj\ - $(SLO)$/xdialogcreator.obj\ - $(SLO)$/advisesink.obj - -EXCEPTIONSFILES += \ - $(SLO)$/graphconvert.obj\ - $(SLO)$/olecomponent.obj\ - $(SLO)$/olewrapclient.obj\ - $(SLO)$/xdialogcreator.obj\ - $(SLO)$/advisesink.obj - -.ENDIF - -SHL1OBJS= $(SLOFILES) - -SHL1STDLIBS=\ - $(UNOTOOLSLIB)\ - $(SALLIB)\ - $(CPPULIB)\ - $(CPPUHELPERLIB)\ - $(COMPHELPERLIB)\ - $(TOOLSLIB) - - -.IF "$(GUI)"=="WNT" -.IF "$(COM)"=="GCC" -EMBOBJLIB=-lembobj -.ELSE -EMBOBJLIB=iembobj.lib -.ENDIF - -SHL1STDLIBS+=\ - $(EMBOBJLIB)\ - $(OLE32LIB)\ - $(GDI32LIB)\ - $(UUIDLIB)\ - $(OLEAUT32LIB) - -DEF1EXPORTFILE= exports.dxp - -.ENDIF - - -SHL1DEF= $(MISC)$/$(SHL1TARGET).def - -DEF1NAME= $(SHL1TARGET) - -# .ENDIF -# --- Targets ------------------------------------------------------- - -.INCLUDE : target.mk - -ALLTAR : $(MISC)/emboleobj.component - -.IF "$(OS)" == "WNT" -my_platform = .windows -.END - -$(MISC)/emboleobj.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \ - emboleobj.component - $(XSLTPROC) --nonet --stringparam uri \ - '$(COMPONENTPREFIX_BASIS_NATIVE)$(SHL1TARGETN:f)' -o $@ \ - $(SOLARENV)/bin/createcomponent.xslt emboleobj$(my_platform).component diff --git a/embeddedobj/util/exports.dxp b/embeddedobj/util/exports.dxp deleted file mode 100755 index 70033078921a..000000000000 --- a/embeddedobj/util/exports.dxp +++ /dev/null @@ -1 +0,0 @@ -component_getFactory diff --git a/embeddedobj/util/makefile.mk b/embeddedobj/util/makefile.mk deleted file mode 100755 index c70009b552ce..000000000000 --- a/embeddedobj/util/makefile.mk +++ /dev/null @@ -1,95 +0,0 @@ -#************************************************************************* -# -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# This file is part of OpenOffice.org. -# -# 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. -# -# 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). -# -# 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. -# -#************************************************************************* - -PRJ=.. - -PRJNAME=embeddedobj -TARGET=embobj -ENABLE_EXCEPTIONS=TRUE - -# --- Settings ----------------------------------------------------------- - -.INCLUDE : settings.mk - -# --- Files -------------------------------------------------------- - -LIB1OBJFILES= \ - $(SLO)$/miscobj.obj\ - $(SLO)$/specialobject.obj\ - $(SLO)$/persistence.obj\ - $(SLO)$/embedobj.obj\ - $(SLO)$/inplaceobj.obj\ - $(SLO)$/visobj.obj\ - $(SLO)$/dummyobject.obj\ - $(SLO)$/xcreator.obj\ - $(SLO)$/xfactory.obj\ - $(SLO)$/register.obj\ - $(SLO)$/docholder.obj\ - $(SLO)$/intercept.obj - -LIB1TARGET=$(SLB)$/$(TARGET).lib - -SHL1TARGET= $(TARGET) - -SHL1STDLIBS=\ - $(SALLIB)\ - $(CPPULIB)\ - $(COMPHELPERLIB)\ - $(CPPUHELPERLIB) - -SHL1DEPN= -SHL1IMPLIB= i$(TARGET) - -SHL1LIBS= $(LIB1TARGET) - -SHL1DEF= $(MISC)$/$(SHL1TARGET).def - -DEF1NAME= $(SHL1TARGET) -DEF1DEPN= $(MISC)$/$(SHL1TARGET).flt \ - $(LIB1TARGET) - -DEFLIB1NAME=$(TARGET) -DEF1EXPORTFILE= exports.dxp - -# --- Targets ------------------------------------------------------------- - -.INCLUDE : target.mk - - -$(MISC)$/$(SHL1TARGET).flt: makefile.mk - @echo ------------------------------ - @echo CLEAR_THE_FILE > $@ - @echo __CT >>$@ - - -ALLTAR : $(MISC)/embobj.component - -$(MISC)/embobj.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \ - embobj.component - $(XSLTPROC) --nonet --stringparam uri \ - '$(COMPONENTPREFIX_BASIS_NATIVE)$(SHL1TARGETN:f)' -o $@ \ - $(SOLARENV)/bin/createcomponent.xslt embobj.component |