opnsense-src/sys/modules/dcons/Makefile
Franco Fichtner 402e7dde73 src: initial commit based on FreeBSD-10.0
Taken from:	https://github.com/freebsd/freebsd.git
Commit id:	d44ce30d3054a38723f89a161c5e003e64d1aaae
2014-11-09 09:30:14 +01:00

20 lines
375 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 dcons_os.c dcons_os.h \
opt_dcons.h opt_kdb.h opt_ddb.h opt_gdb.h
.if !defined(KERNBUILDDIR)
opt_kdb.h:
echo "#define KDB 1" > $@
opt_ddb.h:
echo "#define DDB 1" > $@
.endif
CFLAGS+= -I${.CURDIR}/../..
.include <bsd.kmod.mk>