mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo
over ${.CURDIR}/../foo for paths in Makefiles.
Differential Revision: https://reviews.freebsd.org/D9932
Sponsored by: Netflix
Silence on: arch@ (twice)
12 lines
146 B
Makefile
12 lines
146 B
Makefile
# $FreeBSD$
|
|
|
|
SRCDIR= ${SRCTOP}/contrib/zlib/test
|
|
.PATH: ${SRCDIR}
|
|
|
|
PROG= minigzip
|
|
|
|
WARNS?= 5
|
|
CFLAGS+=-DUSE_MMAP
|
|
LIBADD= z
|
|
|
|
.include <bsd.prog.mk>
|