1#       $NetBSD: Makefile,v 1.1 1999/11/23 05:28:20 mrg Exp $
2# $FreeBSD$
3
4PROG=   rcorder
5SRCS=   ealloc.c hash.c rcorder.c
6MAN=	rcorder.8
7
8LDADD=	-lutil
9DPADD=	${LIBUTIL}
10
11# XXX hack for make's hash.[ch]
12CFLAGS+= -DORDER -I.
13
14SRCS+=	util.h
15CLEANFILES+=	util.h
16
17util.h:
18	ln -sf ${.CURDIR}/../../lib/libutil/libutil.h ${.TARGET}
19
20.include <bsd.prog.mk>
21