Makefile.rump revision 1.14
1#	$NetBSD: Makefile.rump,v 1.14 2008/12/16 23:16:46 pooka Exp $
2#
3
4WARNS?=		4
5NOLINT=		# kernel code
6
7CFLAGS+=	-ffreestanding
8CPPFLAGS+=	-D_KERNEL -D_RUMPKERNEL -DMULTIPROCESSOR -DDIAGNOSTIC
9CPPFLAGS:=	-I${RUMPTOP}/include ${CPPFLAGS}
10CPPFLAGS+=	-I${.CURDIR} -I. 
11CPPFLAGS+=	-I${RUMPTOP}/../../common/include -I${RUMPTOP}/../arch
12CPPFLAGS+=	-nostdinc -I${RUMPTOP}/..
13#CPPFLAGS+=	-DDEBUG
14
15RUMPKERNEL=	This is NetBSD and I am the rump.  Good evening.
16
17# workaround: evbppc is not a well-defined arch
18.if (${MACHINE} == "evbppc")
19CPPFLAGS+=	-DPPC_IBM4XX
20.endif
21
22# If an options are changed, trigger a rebuild
23${SRCS:S/.c/.o/g}: ${RUMPTOP}/Makefile.rump
24