MFC: Fix a panic on boot that can occur if you hit keys on the keyboard
[dragonfly.git] / sbin / rcorder / Makefile
blob8f2027d5abe50c07117293e4595037466699fc87
1 # $NetBSD: Makefile,v 1.1 1999/11/23 05:28:20 mrg Exp $
2 # $FreeBSD: src/sbin/rcorder/Makefile,v 1.3 2002/06/21 15:52:05 obrien Exp $
3 # $DragonFly: src/sbin/rcorder/Makefile,v 1.4 2006/10/17 00:55:43 pavalos Exp $
5 PROG= rcorder
6 SRCS= ealloc.c hash.c rcorder.c
7 MAN= rcorder.8
9 LDADD+= -lutil
10 DPADD+= ${LIBUTIL}
12 # XXX hack for make's hash.[ch]
13 CFLAGS+= -DORDER -I.
15 SRCS+= util.h
16 CLEANFILES+= util.h
18 util.h:
19 ${LN} -sf ${.CURDIR}/../../lib/libutil/libutil.h ${.TARGET}
21 .include <bsd.prog.mk>