diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-06-17 14:43:06 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-06-17 14:43:06 +0000 |
commit | f3a46c4065e9cc7e1da32186b476bcd41c2ea0f0 (patch) | |
tree | 14094444757b45252d36be4da77c54a9f873f5ec /shell | |
parent | 84bbd5a3a2ba685ae4b10c1ade22437bd34ab215 (diff) |
INTEGRATION: CWS defaultmailer (1.2.142); FILE MERGED
2004/06/07 13:51:40 tra 1.2.142.3: #i29558#now evaluating registry key for alternative senddoc executable as specified
2004/06/07 12:23:43 tra 1.2.142.2: #i29558#following UNO convention and name uno libraries with an 'uno' in the middle of the name
2004/06/04 15:09:39 tra 1.2.142.1: #i29558#refactoring of simple mail service, MAPI stuff now called in an own executable
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/win32/simplemail/makefile.mk | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/shell/source/win32/simplemail/makefile.mk b/shell/source/win32/simplemail/makefile.mk index 8b8fd3ca2771..5342250c56cb 100644 --- a/shell/source/win32/simplemail/makefile.mk +++ b/shell/source/win32/simplemail/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: jbu $ $Date: 2002-10-01 17:32:09 $ +# last change: $Author: rt $ $Date: 2004-06-17 15:43:06 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -82,11 +82,12 @@ SLOFILES=$(SLO)$/smplmailentry.obj\ $(SLO)$/smplmailsuppl.obj\ $(SLO)$/simplemapi.obj -SHL1TARGET=$(TARGET) +SHL1TARGET=$(TARGET).uno SHL1STDLIBS=$(CPPULIB)\ $(CPPUHELPERLIB)\ - $(SALLIB) + $(SALLIB)\ + advapi32.lib SHL1LIBS= @@ -99,6 +100,19 @@ SHL1DEF=$(MISC)$/$(SHL1TARGET).def DEF1NAME=$(SHL1TARGET) DEF1EXPORTFILE= exports.dxp +# --- mapimailer -------------------------------------------------------- + +TARGETTYPE=CUI + +OBJFILES= $(OBJ)$/senddoc.obj\ + $(OBJ)$/simplemapi.obj + +APP1TARGET=senddoc +APP1OBJS=$(OBJFILES) +APP1STDLIBS=kernel32.lib\ + $(SALLIB) + +APP1DEF=$(MISC)$/$(APP1TARGET).def # --- Targets ------------------------------------------------------ |