mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 00:34:33 -05:00
16 lines
199 B
Makefile
16 lines
199 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= ${_tests} ${_zfs} ${_zpool}
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
_tests= tests
|
|
.endif
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
_zfs= zfs
|
|
_zpool= zpool
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|