]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/modules/dcons/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.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>