mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 08:55:18 -04:00
bsdgrep switched over to libregex back in r363823 to fill WITH_GNU_GREP_COMPAT, since libgnuregex in base is quite buggy and libregex is somewhat functional. Don't build libgnuregex on our account, please.
15 lines
223 B
Makefile
15 lines
223 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR=
|
|
SUBDIR.${MK_DIALOG}+= libdialog
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.if ${MK_GNU_GREP} != "no" || ${MK_GDB} != "no"
|
|
SUBDIR+= libregex
|
|
.endif
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.include <bsd.subdir.mk>
|