xref: /freebsd/sbin/rcorder/Makefile (revision 3dcf5eb70598c88befd62f61f81e283e568ec519)
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
17NO_PIE=	yes
18
19util.h:
20	ln -sf ${.CURDIR}/../../lib/libutil/libutil.h ${.TARGET}
21
22.include <bsd.prog.mk>
23