From 50a31d452c540902dc3440b10fdb5be335608fe8 Mon Sep 17 00:00:00 2001 From: sjg Date: Thu, 16 May 2013 15:28:38 +0000 Subject: Build bmake by default. If someone explicitly builds usr.bin/make while MK_BMAKE==yes, install it as 'fmake'. Reviewed by: brooks --- usr.bin/make/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'usr.bin/make') diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index 5442eaa..5bc8b87 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -111,4 +111,11 @@ CFLAGS+= -DDEFSHELLNAME=\"${MAKE_SHELL}\" .error "MAKE_SHELL must be set to one of \"csh\", \"sh\" or \"ksh\"." .endif +.if ${MK_BMAKE} != "no" +# if we are here we don't want this called 'make' +PROG= fmake +fmake.1: make.1 + cp ${.ALLSRC} ${.TARGET} +.endif + .include -- cgit v1.1