Nuke unnecessary setting of ural(4)'s security registers. ural(4) only
[dragonfly/vkernel-mp.git] / sbin / rcorder / Makefile
blob5039560b75ef79860332c3edf6c4301e595cd6f3
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 02: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>