]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/modules/dcons/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.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
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 .endif
17
18 CFLAGS+= -I${.CURDIR}/../.. 
19
20 .include <bsd.kmod.mk>