mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 11:00:15 -05:00
This is a prerequisite of unifying kernel zlib instances. Submitted by: Yoshihiro Ota <ota at j.email.ne.jp> MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D20191
12 lines
150 B
Makefile
12 lines
150 B
Makefile
# $FreeBSD$
|
|
|
|
SRCDIR= ${SRCTOP}/sys/contrib/zlib/test
|
|
.PATH: ${SRCDIR}
|
|
|
|
PROG= minigzip
|
|
|
|
WARNS?= 5
|
|
CFLAGS+=-DUSE_MMAP
|
|
LIBADD= z
|
|
|
|
.include <bsd.prog.mk>
|