From 3e49a1c21bd91a813e62ac4c824180f930b7ea08 Mon Sep 17 00:00:00 2001 From: Satoshi Asami Date: Sat, 1 Jun 1996 05:47:42 +0000 Subject: Add some comments to sections to disable targets using NO_* variables. Remove disabling of "repackage", that thing calls package anyway. Submitted by: (mostly) jkh --- Mk/bsd.port.mk | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'Mk') diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 9694bf224bf1..50d7bc2818ad 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.203 1996/04/27 18:36:02 jkh Exp $ +# $Id: bsd.port.mk,v 1.204 1996/05/30 08:53:26 asami Exp $ # # Please view me with 4 column tabs! @@ -464,7 +464,6 @@ all: DEPENDS="${DEPENDS}" BUILD_DEPENDS="${BUILD_DEPENDS}" \ RUN_DEPENDS="${RUN_DEPENDS}" X11BASE=${X11BASE} \ ${ALL_HOOK} - .endif .if !target(all) @@ -488,6 +487,7 @@ is_depended: ${IS_DEPENDED_TARGET} # override from an individual Makefile. ################################################################ +# Disable extract .if defined(NO_EXTRACT) && !target(extract) extract: checksum @${TOUCH} ${TOUCH_FLAGS} ${EXTRACT_COOKIE} @@ -496,26 +496,32 @@ checksum: fetch makesum: @${DO_NADA} .endif + +# Disable configure .if defined(NO_CONFIGURE) && !target(configure) configure: patch @${TOUCH} ${TOUCH_FLAGS} ${CONFIGURE_COOKIE} .endif + +# Disable build .if defined(NO_BUILD) && !target(build) build: configure @${TOUCH} ${TOUCH_FLAGS} ${BUILD_COOKIE} .endif + +# Disable package .if defined(NO_PACKAGE) && !target(package) package: @${DO_NADA} .endif -.if defined(NO_PACKAGE) && !target(repackage) -repackage: - @${DO_NADA} -.endif + +# Disable install .if defined(NO_INSTALL) && !target(install) install: build @${TOUCH} ${TOUCH_FLAGS} ${INSTALL_COOKIE} .endif + +# Disable patch .if defined(NO_PATCH) && !target(patch) patch: extract @${TOUCH} ${TOUCH_FLAGS} ${PATCH_COOKIE} -- cgit v1.2.3