Deleted Added
sdiff udiff text old ( 136468 ) new ( 151350 )
full compact
1# $Id: Makefile,v 1.6 2003/10/24 15:41:26 simokawa Exp $
2# $FreeBSD: head/sys/modules/dcons/Makefile 151350 2005-10-14 23:30:17Z yar $
3
4.PATH: ${.CURDIR}/../../dev/dcons
5
6KMOD = dcons
7SRCS = dcons.c dcons.h dcons_os.c dcons_os.h \
8 opt_dcons.h opt_ddb.h opt_comconsole.h
9
10.if !defined(KERNBUILDDIR)
11opt_ddb.h:
12 echo "#define KDB 1" > $@
13
14opt_comconsole.h:
15 echo "#define ALT_BREAK_TO_DEBUGGER 1" > $@
16.endif
17
18CFLAGS+= -I${.CURDIR}/../..
19
20.include <bsd.kmod.mk>