diff options
author | dic <dic@openoffice.org> | 2002-03-14 14:41:29 +0000 |
---|---|---|
committer | dic <dic@openoffice.org> | 2002-03-14 14:41:29 +0000 |
commit | 41792f6a1197934162d24703ae03a4b544b2e191 (patch) | |
tree | 7876e69a4b12571ea5083ad12fa2dfab51e0e0b9 /desktop | |
parent | 92b6483b711f7af75feb8b3f300c0c36f449e2cd (diff) |
#91181# provide desktop core as shared library.
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/prj/d.lst | 1 | ||||
-rw-r--r-- | desktop/source/app/makefile.mk | 22 | ||||
-rw-r--r-- | desktop/util/makefile.mk | 43 |
3 files changed, 62 insertions, 4 deletions
diff --git a/desktop/prj/d.lst b/desktop/prj/d.lst index bc5349e1d323..7ef479c73ac3 100644 --- a/desktop/prj/d.lst +++ b/desktop/prj/d.lst @@ -16,6 +16,7 @@ mkdir: %_DEST%\bin%_EXT%\remote2 ..\%__SRC%\bin\soffice.exe %_DEST%\bin%_EXT%\soffice.exe ..\%__SRC%\bin\wrp?????.dll %_DEST%\bin%_EXT%\wrp?????.dll ..\%__SRC%\lib\libwrp?????.so %_DEST%\lib%_EXT%\libwrp?????.so +..\%__SRC%\lib\libdsk?????.so %_DEST%\lib%_EXT%\libdsk?????.so ..\%__SRC%\bin\soffice %_DEST%\bin%_EXT%\soffice.bin ..\%__SRC%\bin\sweb %_DEST%\bin%_EXT%\sweb.bin diff --git a/desktop/source/app/makefile.mk b/desktop/source/app/makefile.mk index 2065666ac27a..906351643471 100644 --- a/desktop/source/app/makefile.mk +++ b/desktop/source/app/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.9 $ +# $Revision: 1.10 $ # -# last change: $Author: cd $ $Date: 2001-11-05 07:17:36 $ +# last change: $Author: dic $ $Date: 2002-03-14 15:39:43 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -96,6 +96,24 @@ OBJFILES = \ $(OBJ)$/desktopresid.obj \ $(OBJ)$/dispatchwatcher.obj +.IF "$(OS)" == "SOLARIS" + +SLOFILES = \ + $(SLO)$/app.obj \ + $(SLO)$/intro.obj \ + $(SLO)$/officeipcthread.obj \ + $(SLO)$/appinit.obj \ + $(SLO)$/cmdlineargs.obj \ + $(SLO)$/pluginacceptthread.obj \ + $(SLO)$/officeacceptthread.obj \ + $(SLO)$/oinstanceprovider.obj \ + $(SLO)$/opluginframefactory.obj \ + $(SLO)$/appsys.obj \ + $(SLO)$/desktopresid.obj \ + $(SLO)$/dispatchwatcher.obj + +.ENDIF + SRC1FILES= desktop.src SRS1NAME= desktop diff --git a/desktop/util/makefile.mk b/desktop/util/makefile.mk index c2b4cbe0ec36..9a1157856be6 100644 --- a/desktop/util/makefile.mk +++ b/desktop/util/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.14 $ +# $Revision: 1.15 $ # -# last change: $Author: cd $ $Date: 2001-11-05 07:18:26 $ +# last change: $Author: dic $ $Date: 2002-03-14 15:40:48 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -213,6 +213,45 @@ APP4LINKRES=$(MISC)$/$(APP4TARGET).res .ENDIF +.IF "$(OS)" == "SOLARIS" + +SLOFILES = \ + $(SLO)$/app.obj \ + $(SLO)$/intro.obj \ + $(SLO)$/officeipcthread.obj \ + $(SLO)$/appinit.obj \ + $(SLO)$/cmdlineargs.obj \ + $(SLO)$/pluginacceptthread.obj \ + $(SLO)$/officeacceptthread.obj \ + $(SLO)$/oinstanceprovider.obj \ + $(SLO)$/opluginframefactory.obj \ + $(SLO)$/appsys.obj \ + $(SLO)$/desktopresid.obj \ + $(SLO)$/dispatchwatcher.obj + +SHL1OBJS= $(SLOFILES) +SHL1TARGET= dsk$(UPD)$(DLLPOSTFIX) + +SHL1IMPLIB= idsk +SHL1STDLIBS= \ + $(SALLIB) \ + $(VOSLIB) \ + $(TOOLSLIB) \ + $(CPPULIB) \ + $(CPPUHELPERLIB) \ + $(SVLLIB) \ + $(VCLLIB) \ + $(UNOTOOLSLIB) \ + $(UCBHELPERLIB) \ + $(COMPHELPERLIB) \ + $(SALHELPERLIB) + +SHL1DEPN= makefile.mk +SHL1DEF= $(MISC)$/$(SHL1TARGET).def + +DEF1NAME= $(SHL1TARGET) +.ENDIF + # --- Targets ------------------------------------------------------------- .INCLUDE : target.mk |