From 065ee11549e42e7b34487b9161f578a4fc3595fe Mon Sep 17 00:00:00 2001 From: thorpej Date: Tue, 19 Sep 1995 23:30:54 +0000 Subject: [PATCH] Compile the kernel with -Werror and -fno-builtin. --- sys/arch/pmax/conf/Makefile.pmax | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/pmax/conf/Makefile.pmax b/sys/arch/pmax/conf/Makefile.pmax index 343f957fdd21..aea4ebaed3fd 100644 --- a/sys/arch/pmax/conf/Makefile.pmax +++ b/sys/arch/pmax/conf/Makefile.pmax @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.pmax,v 1.15 1995/06/24 20:46:54 christos Exp $ +# $NetBSD: Makefile.pmax,v 1.16 1995/09/19 23:30:54 thorpej Exp $ # @(#)Makefile.pmax 8.2 (Berkeley) 2/16/94 # @@ -33,9 +33,9 @@ INCLUDES= -I. -I$S/arch -I$S -I$S/sys COPTS= ${INCLUDES} ${IDENT} -D_KERNEL -Dpmax -D__NetBSD__ ${GP} CPPOPTS=${INCLUDES} ${IDENT} -D_KERNEL -Dpmax -D__NetBSD__ .ifdef DEBUG -CFLAGS= ${DEBUG} ${COPTS} +CFLAGS= ${DEBUG} -Werror -fno-builtin ${COPTS} .else -CFLAGS= -O2 ${COPTS} +CFLAGS= -O2 -Werror -fno-builtin ${COPTS} .endif ### find out what to use for libkern