freebsd-dev/sys/modules/syscons/daemon/Makefile
Kazutaka YOKOTA f4863d1a23 Take the OS release string from the kernel variable `osrelease'
rather than hard-code it in the message text. Optinally include
the host name in the message if SHOW_HOSTNAME is defined.

The origianl idea and sample code submitted by Angelo Turetta
<ATuretta@stylo.it>.
1997-06-24 12:43:18 +00:00

16 lines
349 B
Makefile

# $Id: Makefile,v 1.1 1997/05/21 14:18:26 yokota Exp $
KMOD= daemon_saver_mod
SRCS= daemon_saver.c
NOMAN=
CFLAGS+= -DLKM -I${.CURDIR}/.. -I${.CURDIR}/../../../sys
# Omits the bouncing message text and shows only the daemon.
#CFLAGS+= -DDAEMON_ONLY
# Includes the host name in the message text.
#CFLAGS+= -DSHOW_HOSTNAME
.include <bsd.kmod.mk>