summaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-06-01 05:47:42 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-06-01 05:47:42 +0000
commit3e49a1c21bd91a813e62ac4c824180f930b7ea08 (patch)
tree96d89e7d4daee58dd11e31316b0ffe702ac61b90 /Mk/bsd.port.mk
parentxpdf 0.4 -> 0.5 (old file gone from master site) (diff)
Add some comments to sections to disable targets using NO_* variables.
Remove disabling of "repackage", that thing calls package anyway. Submitted by: (mostly) jkh
Notes
Notes: svn path=/head/; revision=3152
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk18
1 files changed, 12 insertions, 6 deletions
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}