mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Start fresh on master, only apply needed patches on top now. Upstream commit: 56279fdef34eb28a4655b489b992c651bd8379fc Taken from: FreeBSD
18 lines
300 B
Makefile
18 lines
300 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ncurses form menu panel
|
|
|
|
.if ${MK_NCURSESW} != "no"
|
|
SUBDIR+= ncursesw formw menuw panelw
|
|
.endif
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.for subdir in ${SUBDIR:Nncurses*:N*w}
|
|
SUBDIR_DEPEND_${subdir}= ncurses
|
|
SUBDIR_DEPEND_${subdir}w= ncursesw
|
|
.endfor
|
|
|
|
.include <bsd.subdir.mk>
|