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> _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
