xref: /dragonfly/sbin/rcorder/Makefile (revision 4e7eb5cc)
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.1 2003/07/24 06:35:38 dillon Exp $
4
5PROG=   rcorder
6SRCS=   ealloc.c hash.c rcorder.c
7MAN=	rcorder.8
8
9LDADD+=	-lutil
10DPADD+=	${LIBUTIL}
11
12WARNS=	0
13# XXX hack for make's hash.[ch]
14CFLAGS+= -DORDER -I.
15
16SRCS+=	util.h
17CLEANFILES+=	util.h
18
19util.h:
20	ln -sf ${.CURDIR}/../../lib/libutil/libutil.h ${.TARGET}
21
22.include <bsd.prog.mk>
23