]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sbin/rcorder/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.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 # XXX hack for make's hash.[ch]
12 CFLAGS+= -DORDER -I.
13
14 SRCS+=  util.h
15 CLEANFILES+=    util.h
16
17 util.h:
18         ln -sf ${.CURDIR}/../../lib/libutil/libutil.h ${.TARGET}
19
20 .include <bsd.prog.mk>