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