summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-09-25 12:04:48 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-09-25 12:04:48 +0000
commit0cc0b07bc8ce76c6d9ca50d70c7b55153906914d (patch)
treeb5fd93224f868e8858a50e0d91ecd47cf7c71239 /cli_ure
parent5d2c4f06e90e6508de93e25ba608e5c4b8c0d319 (diff)
INTEGRATION: CWS obo05 (1.15.6); FILE MERGED
2006/09/18 03:45:02 vq 1.15.6.5: #i69598# Make climaker.exe.config executable. 2006/09/08 13:04:57 obo 1.15.6.4: FORCE switch removed 2006/09/07 07:46:50 obo 1.15.6.3: typo 2006/09/05 07:29:23 obo 1.15.6.2: #i53611# net 2005 2006/08/30 08:30:46 obo 1.15.6.1: #i53611# .net 2005
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/climaker/makefile.mk23
1 files changed, 15 insertions, 8 deletions
diff --git a/cli_ure/source/climaker/makefile.mk b/cli_ure/source/climaker/makefile.mk
index 52d3cab28fe1..fed741c331e4 100644
--- a/cli_ure/source/climaker/makefile.mk
+++ b/cli_ure/source/climaker/makefile.mk
@@ -4,9 +4,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.15 $
+# $Revision: 1.16 $
#
-# last change: $Author: rt $ $Date: 2006-07-25 07:54:36 $
+# last change: $Author: vg $ $Date: 2006-09-25 13:04:48 $
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
@@ -79,20 +79,20 @@ UNOTYPES = \
com.sun.star.reflection.XSingletonTypeDescription2 \
com.sun.star.reflection.XStructTypeDescription
-CFLAGS +=-AI$(BIN)
+CFLAGSCXX +=-AI$(BIN)
# When compiling for CLR, disable "warning C4339: use of undefined type detected
# in CLR meta-data - use of this type may lead to a runtime exception":
.IF "$(COMEX)"=="10"
-CFLAGS += -clr:noAssembly -wd4339
+CFLAGSCXX += -clr:noAssembly -wd4339
.ELSE
-CFLAGS += -clr:noAssembly -wd4339
+CFLAGSCXX += -clr:oldSyntax -LN -wd4339 -wd4715
.ENDIF
OBJFILES = \
- $(OBJ)$/climaker_emit.obj \
- $(OBJ)$/climaker_app.obj
+ $(OBJ)$/climaker_app.obj \
+ $(OBJ)$/climaker_emit.obj
APP1TARGET = $(TARGET)
APP1OBJS = $(OBJFILES)
@@ -104,6 +104,11 @@ APP1STDLIBS = \
$(SALLIB) \
mscoree.lib
+.IF "$(CCNUMVER)" >= "001399999999"
+APP1STDLIBS += \
+ msvcmrt.lib
+.ENDIF
+
.ENDIF
@@ -119,9 +124,11 @@ ALLTAR : $(BIN)$/climaker.exe.config
$(BIN)$/climaker.exe.config : climaker.exe.config
$(GNUCOPY) -f $? $@
-
+.IF "$(USE_SHELL)"!="4nt"
+ +chmod +x $@
.ENDIF
+.ENDIF