Date: Sat, 27 Dec 2014 21:11:43 +0000 (UTC) From: Garrett Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r276320 - head/lib/ncurses Message-ID: <201412272111.sBRLBhm5007330@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Sat Dec 27 21:11:42 2014 New Revision: 276320 URL: https://svnweb.freebsd.org/changeset/base/276320 Log: Parallelize building lib/ncurses MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D1353 Modified: head/lib/ncurses/Makefile Modified: head/lib/ncurses/Makefile ============================================================================== --- head/lib/ncurses/Makefile Sat Dec 27 20:58:01 2014 (r276319) +++ head/lib/ncurses/Makefile Sat Dec 27 21:11:42 2014 (r276320) @@ -3,4 +3,11 @@ SUBDIR= ncurses form menu panel \ ncursesw formw menuw panelw +SUBDIR_PARALLEL= + +.for subdir in ${SUBDIR:Nncurses*:N*w} +SUBDIR_DEPEND_${subdir}= ncurses +SUBDIR_DEPEND_${subdir}w= ncursesw +.endfor + .include <bsd.subdir.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412272111.sBRLBhm5007330>