]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/modules/dcons/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / modules / dcons / Makefile
1 # $Id: Makefile,v 1.6 2003/10/24 15:41:26 simokawa Exp $
2 # $FreeBSD$
3
4 .PATH:  ${.CURDIR}/../../dev/dcons
5
6 KMOD    = dcons
7 SRCS    = dcons.c dcons.h dcons_os.c dcons_os.h \
8                 opt_dcons.h opt_kdb.h opt_ddb.h opt_gdb.h opt_comconsole.h
9
10 .if !defined(KERNBUILDDIR)
11 opt_kdb.h:
12         echo "#define KDB 1" > $@
13
14 opt_ddb.h:
15         echo "#define DDB 1" > $@
16
17 opt_comconsole.h:
18         echo "#define ALT_BREAK_TO_DEBUGGER 1" > $@
19 .endif
20
21 CFLAGS+= -I${.CURDIR}/../.. 
22
23 .include <bsd.kmod.mk>