diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-03-26 14:07:48 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-03-26 14:07:48 +0000 |
commit | 06704ca10ad26530ef791e217d1c9d52546e73ca (patch) | |
tree | 8697f36f2a738cfcbdc5ab5e7a08ef1898aa815d /dtrans | |
parent | 83ec55315c39297515b71f418c30bf203237b7e1 (diff) |
INTEGRATION: CWS mingwport03 (1.13.18); FILE MERGED
2006/10/24 13:11:31 vg 1.13.18.2: #i53572# MinGW port
2006/09/13 14:46:37 vg 1.13.18.1: #i53572# MinGW port
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/dtobj/makefile.mk | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/dtrans/source/win32/dtobj/makefile.mk b/dtrans/source/win32/dtobj/makefile.mk index 001681b2898a..d81da485c191 100644 --- a/dtrans/source/win32/dtobj/makefile.mk +++ b/dtrans/source/win32/dtobj/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.13 $ +# $Revision: 1.14 $ # -# last change: $Author: vg $ $Date: 2006-05-24 14:34:25 $ +# last change: $Author: vg $ $Date: 2007-03-26 15:07:48 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -47,7 +47,9 @@ LIBTARGET=NO # ------------------------------------------------------------------ #-DUNICODE -D_UNICODE +.IF "$(COM)"!="GCC" CFLAGS+=-GR -Ob0 +.ENDIF SLOFILES=$(SLO)$/DtObjFactory.obj\ $(SLO)$/APNDataObject.obj\ @@ -62,7 +64,20 @@ SLOFILES=$(SLO)$/DtObjFactory.obj\ $(SLO)$/XNotifyingDataObject.obj LIB1TARGET=$(SLB)$/$(TARGET).lib +.IF "$(COM)"!="GCC" LIB1OBJFILES=$(SLOFILES) +.ELSE +LIB1OBJFILES=$(SLO)$/DtObjFactory.obj\ + $(SLO)$/APNDataObject.obj\ + $(SLO)$/DOTransferable.obj\ + $(SLO)$/DTransHelper.obj\ + $(SLO)$/XTDataObject.obj\ + $(SLO)$/TxtCnvtHlp.obj\ + $(SLO)$/DataFmtTransl.obj\ + $(SLO)$/FmtFilter.obj\ + $(SLO)$/FetcList.obj\ + $(SLO)$/Fetc.obj +.ENDIF # --- Targets ------------------------------------------------------ |