mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 05:58:57 +00:00
b7e0d5453a
r277674 (by ngie): Fix building rcorder with -DDEBUG by using libutil.h instead of util.h from usr.bin/make Sponsored by: EMC / Isilon Storage Division
16 lines
234 B
Makefile
16 lines
234 B
Makefile
# $NetBSD: Makefile,v 1.1 1999/11/23 05:28:20 mrg Exp $
|
|
# $FreeBSD$
|
|
|
|
PROG= rcorder
|
|
SRCS= ealloc.c hash.c rcorder.c
|
|
MAN= rcorder.8
|
|
|
|
LDADD= -lutil
|
|
DPADD= ${LIBUTIL}
|
|
|
|
CFLAGS+= -DORDER
|
|
|
|
#CFLAGS+= -DDEBUG
|
|
|
|
.include <bsd.prog.mk>
|