diff options
author | Christian Lippka <cl@openoffice.org> | 2001-03-26 14:53:16 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-03-26 14:53:16 +0000 |
commit | 4a66d7a6e4eb9c0f03fef19fe0c8d4c89402a74a (patch) | |
tree | 56161e33d3fd6e862985886068dfae027b805493 | |
parent | 4f19061dd8463f893fa66b48c067bea33f73408e (diff) |
#84444# added GraphicExporter
-rw-r--r-- | sd/util/exports.dxp | 3 | ||||
-rw-r--r-- | sd/util/makefile.mk | 13 |
2 files changed, 12 insertions, 4 deletions
diff --git a/sd/util/exports.dxp b/sd/util/exports.dxp new file mode 100644 index 000000000000..0c2e3e7cddd7 --- /dev/null +++ b/sd/util/exports.dxp @@ -0,0 +1,3 @@ +component_getImplementationEnvironment +component_writeInfo +component_getFactory
\ No newline at end of file diff --git a/sd/util/makefile.mk b/sd/util/makefile.mk index 44b35f105d06..1fb2262a0e1f 100644 --- a/sd/util/makefile.mk +++ b/sd/util/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.7 $ +# $Revision: 1.8 $ # -# last change: $Author: cl $ $Date: 2001-03-19 10:19:40 $ +# last change: $Author: cl $ $Date: 2001-03-26 15:53:16 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -127,8 +127,8 @@ SHL1STDLIBS= \ $(OFALIB) \ $(SCLIB) \ $(TOOLSLIB) \ + $(COMPHELPERLIB) \ $(ONELIB) \ - $(CPPULIB) \ $(PAPLIB) \ $(GOLIB) \ $(VOSLIB) \ @@ -168,7 +168,6 @@ SHL1DEF= $(MISC)$/$(SHL1TARGET).def SHL1RES= $(RCTARGET) .ENDIF - # --- Linken der Applikation --------------------------------------- LIB2TARGET=$(SLB)$/sdmod.lib @@ -267,6 +266,9 @@ $(MISC)$/$(SHL1TARGET).def: makefile.mk @echo _CreateObjSdGraphicDocShellDll @5 >>$@ @echo _InitSdDll @6 >>$@ @echo _DeInitSdDll @7 >>$@ + @echo component_getImplementationEnvironment >>$@ + @echo component_writeInfo >>$@ + @echo component_getFactory >>$@ .ENDIF .IF "$(GUI)" == "WNT" @@ -284,6 +286,9 @@ $(MISC)$/$(SHL1TARGET).def: @echo CreateObjSdGraphicDocShellDll @23 >>$@ @echo InitSdDll @24 >>$@ @echo DeInitSdDll @25 >>$@ + @echo component_getImplementationEnvironment >>$@ + @echo component_writeInfo >>$@ + @echo component_getFactory >>$@ .ENDIF # ------------------------------------------------------------------------- |