Add some comments to sections to disable targets using NO_* variables.

Remove disabling of "repackage", that thing calls package anyway.

Submitted by:	(mostly) jkh
This commit is contained in:
Satoshi Asami 1996-06-01 05:47:42 +00:00
parent a230877213
commit 43c915b1af
1 changed files with 12 additions and 6 deletions

View File

@ -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}