INTEGRATION: CWS ooogrind (1.19.172); FILE MERGED

2004/06/11 17:47:06 thb 1.19.172.4: #i26634# Cleaned up and adhered more closely to *nix and UDK conventions
2004/05/10 17:20:49 thb 1.19.172.3: #i26634# Added comment separator
2004/03/17 17:36:49 thb 1.19.172.2: #i26634# Now defining OSL_DEBUG_LEVEL=0, to avoid need to link against standard sal lib
2004/03/17 16:51:51 thb 1.19.172.1: #i26634# Building second version of sal lib, with FORCE_SYSALLOC defined. This will then later be LD_PRELOADED to soffice, to enable proper valgrinding
This commit is contained in:
Hans-Joachim Lankenau 2004-06-25 17:38:49 +00:00
parent c7c4980b29
commit b797d95ae6

View file

@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
# $Revision: 1.19 $
# $Revision: 1.20 $
#
# last change: $Author: hr $ $Date: 2003-03-26 16:46:39 $
# last change: $Author: hjs $ $Date: 2004-06-25 18:38:49 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@ -127,6 +127,23 @@ OBJFILES= $(OBJ)$/alloc.obj \
$(OBJ)$/tres.obj \
$(OBJ)$/math.obj
# --- Extra objs ----------------------------------------------------
.IF "$(OS)"=="LINUX"
#
# This part builds a second version of alloc.c, with
# FORCE_SYSALLOC defined. Is later used in util/makefile.mk
# to build a tiny replacement lib to LD_PRELOAD into the
# office, enabling e.g. proper valgrinding.
#
SECOND_BUILD=SYSALLOC
SYSALLOC_SLOFILES= $(SLO)$/alloc.obj
SYSALLOCCDEFS+=-DFORCE_SYSALLOC -DOSL_DEBUG_LEVEL=0
.ENDIF # .IF "$(OS)"=="LINUX"
#.ENDIF
.ENDIF