From 388e590f951441f619cd32710dc151e0ac810a10 Mon Sep 17 00:00:00 2001 From: ru Date: Fri, 17 Mar 2006 18:54:44 +0000 Subject: Reimplementation of world/kernel build options. For details, see: http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine) --- share/mk/bsd.prog.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'share/mk/bsd.prog.mk') diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index 3b4d092..2485a90 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -74,7 +74,7 @@ ${PROG}: ${OBJS} .endif -.if !defined(NO_MAN) && !defined(MAN) && \ +.if ${MK_MAN} != "no" && !defined(MAN) && \ !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \ !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \ !defined(MAN7) && !defined(MAN8) && !defined(MAN9) && \ @@ -85,7 +85,7 @@ MAN1= ${MAN} .endif all: objwarn ${PROG} ${SCRIPTS} -.if !defined(NO_MAN) +.if ${MK_MAN} != "no" all: _manpages .endif @@ -177,7 +177,7 @@ NLSNAME?= ${PROG} .include .include -.if !defined(NO_MAN) +.if ${MK_MAN} != "no" realinstall: _maninstall .ORDER: beforeinstall _maninstall .endif @@ -191,7 +191,7 @@ lint: ${SRCS:M*.c} .endif .endif -.if !defined(NO_MAN) +.if ${MK_MAN} != "no" .include .endif -- cgit v1.1