freebsd-dev/sys/modules/dcons/Makefile
Hidetoshi Shimokawa 869093b15d Add dumb console driver and related bits.
dcons(4): very simple console and gdb port driver
dcons_crom(4): FireWire attachment
dconschat(8): User interface to dcons

Tested with: i386, i386-PAE, and sparc64.
2003-10-24 15:44:10 +00:00

19 lines
341 B
Makefile

# $Id: Makefile,v 1.6 2003/10/24 15:41:26 simokawa Exp $
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/dcons
KMOD = dcons
SRCS = dcons.c dcons.h \
opt_dcons.h opt_ddb.h opt_comconsole.h
opt_ddb.h:
echo "#define DDB 1" > $@
opt_comconsole.h:
echo "#define ALT_BREAK_TO_DEBUGGER 1" > $@
CFLAGS+= -I${.CURDIR}/../..
.include <bsd.kmod.mk>