diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-07-30 16:23:34 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-07-30 16:23:34 +0000 |
commit | e49fa6a86f08fbb55b635b90e03ba4374b05ffb1 (patch) | |
tree | e04e667ba6d91bb00cc3eb216107df406583592d /sys/arch/mac68k | |
parent | f5b5c7c60835e50bbf241284fcf5ddd64b34e9d6 (diff) |
Shuffle the order in which we look for header files, when doing
kernel builds locally this doesnt change much but over NFS this
cuts about 12% of the build time on my setup (i386).
OK miod@, deraadt@.
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r-- | sys/arch/mac68k/conf/Makefile.mac68k | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mac68k/conf/Makefile.mac68k b/sys/arch/mac68k/conf/Makefile.mac68k index 21dc6268e3d..24896a3e666 100644 --- a/sys/arch/mac68k/conf/Makefile.mac68k +++ b/sys/arch/mac68k/conf/Makefile.mac68k @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.mac68k,v 1.35 2006/07/27 05:58:11 miod Exp $ +# $OpenBSD: Makefile.mac68k,v 1.36 2007/07/30 16:23:33 thib Exp $ # $NetBSD: Makefile.mac68k,v 1.53 1997/04/15 06:11:38 scottr Exp $ # Makefile for OpenBSD @@ -35,7 +35,7 @@ S!= cd ../../../..; pwd MAC68K= $S/arch/mac68k M68K= $S/arch/m68k -INCLUDES= -I. -I$S/arch -I$S -nostdinc +INCLUDES= -I. -I$S -I$S/arch -nostdinc CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ -Dmc68020 -Dmac68k CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ |