mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 19:52:44 +00:00
a1e0a00fd2
OK'ed by: phk
17 lines
295 B
Makefile
17 lines
295 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= fifolog_writer
|
|
|
|
CFLAGS+= -I${.CURDIR}/../lib
|
|
|
|
NO_MAN= # see ../fifolog_create/fifolog.1
|
|
|
|
DPADD= ${LIBFIFOLOG} ${LIBUTIL} ${LIBZ}
|
|
LDADD= ${LIBFIFOLOG} -lutil -lz
|
|
|
|
regress:
|
|
date | ./${PROG} -z 0 /tmp/fifolog.0
|
|
lptest 65 | ./${PROG} -z 9 /tmp/fifolog.1
|
|
|
|
.include <bsd.prog.mk>
|