summaryrefslogtreecommitdiff
path: root/soltools
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-04-22 09:10:18 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-04-22 09:10:18 +0000
commit3773630e480bd3a110b2d311adab411628781045 (patch)
treebd5fe2f04229902af0ac384a00422b6ea9c725ef /soltools
parentc29882c8869e7d7268127a19df29507151957927 (diff)
#i10000# suppress warnings
Diffstat (limited to 'soltools')
-rw-r--r--soltools/mkdepend/makefile.mk11
1 files changed, 9 insertions, 2 deletions
diff --git a/soltools/mkdepend/makefile.mk b/soltools/mkdepend/makefile.mk
index 5285e33ef786..d920be1ade34 100644
--- a/soltools/mkdepend/makefile.mk
+++ b/soltools/mkdepend/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.9 $
+# $Revision: 1.10 $
#
-# last change: $Author: hr $ $Date: 2004-02-02 18:47:16 $
+# last change: $Author: rt $ $Date: 2004-04-22 10:10:18 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -78,6 +78,13 @@ UWINAPILIB=$(0)
CDEFS+=-DNO_X11 -DXP_PC -DHW_THREADS -DINCLUDEDIR=\".\"
+# "mkdepend" is written in K&R style C. Modern compilers will generate
+# lots of warning. There is no point in cleaning this up, so we just
+# switch off warnings
+.IF "$(COM)"=="C52" || "$(COM)"=="GCC"
+CFLAGS+=-w
+.ENDIF
+
OBJFILES= \
$(OBJ)$/cppsetup.obj \
$(OBJ)$/ifparser.obj \