ad746bd1b7
Consumers should not need to encode fifolog's dependency on libz. Handle it automatically in src.libnames.mk. Differential Revision: https://reviews.freebsd.org/D2278 Reviewed by: bapt Sponsored by: The FreeBSD Foundation
16 lines
202 B
Makefile
16 lines
202 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= fifolog_writer
|
|
|
|
CFLAGS+= -I${.CURDIR}/../lib
|
|
|
|
MAN=
|
|
|
|
LIBADD= fifolog
|
|
|
|
regress:
|
|
date | ./${PROG} -z 0 /tmp/fifolog.0
|
|
lptest 65 | ./${PROG} -z 9 /tmp/fifolog.1
|
|
|
|
.include <bsd.prog.mk>
|