Date: Sun, 30 Nov 2014 18:50:15 +0000 (UTC) From: "Simon J. Gerraty" <sjg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r275343 - projects/bmake Message-ID: <201411301850.sAUIoFvn021451@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sjg Date: Sun Nov 30 18:50:15 2014 New Revision: 275343 URL: https://svnweb.freebsd.org/changeset/base/275343 Log: If we are doing META_MODE use targets/Makefile as top-level since this one isn't suitable. Modified: projects/bmake/Makefile Modified: projects/bmake/Makefile ============================================================================== --- projects/bmake/Makefile Sun Nov 30 18:48:57 2014 (r275342) +++ projects/bmake/Makefile Sun Nov 30 18:50:15 2014 (r275343) @@ -99,6 +99,11 @@ # # For more information, see the build(7) manual page. # +.if ${MK_META_MODE} == "yes" +# targets/Makefile plays the role of top-level +.include "targets/Makefile" +.else + TGTS= all all-man buildenv buildenvvars buildkernel buildworld \ check-old check-old-dirs check-old-files check-old-libs \ checkdpadd clean cleandepend cleandir \ @@ -527,3 +532,4 @@ MAKE_JOB_ERROR_TOKEN= no .export MAKE_JOB_ERROR_TOKEN .endif .endif +.endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411301850.sAUIoFvn021451>