19 lines
520 B
Makefile
19 lines
520 B
Makefile
# $NetBSD: Makefile.rump,v 1.12 2008/10/09 13:40:38 pooka Exp $
|
|
#
|
|
|
|
WARNS?= 4
|
|
NOLINT= # kernel code
|
|
|
|
CFLAGS+= -ffreestanding
|
|
CPPFLAGS+= -D_KERNEL -D_RUMPKERNEL -DMULTIPROCESSOR -DDIAGNOSTIC
|
|
CPPFLAGS:= -I${RUMPTOP}/include ${CPPFLAGS}
|
|
CPPFLAGS+= -I${.CURDIR} -I.
|
|
CPPFLAGS+= -I${RUMPTOP}/../../common/include
|
|
CPPFLAGS+= -nostdinc -I${RUMPTOP}/..
|
|
#CPPFLAGS+= -DDEBUG
|
|
|
|
RUMPKERNEL= This is NetBSD and I am the rump. Good evening.
|
|
|
|
# If an options are changed, trigger a rebuild
|
|
${SRCS:S/.c/.o/g}: ${RUMPTOP}/Makefile.rump
|