mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-19 15:33:56 +00:00
662cb04c25
Quoth the man-page: Fifologs provide a compact round-robin circular storage for recording text and binary information to permanent storage in a bounded and pre- dictable fashion, time and space wise. Not yet connected to the build, but feel free to test & review.
17 lines
306 B
Makefile
17 lines
306 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
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
test: ${PROG}
|
|
date | ./${PROG} -z 0 /tmp/fifolog.0
|
|
lptest 65 | ./${PROG} -z 9 /tmp/fifolog.1
|