summaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2000-08-15 17:51:02 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2000-08-15 17:51:02 +0000
commit9e1f235a593373dd10d4937fc95e8d1266d48e26 (patch)
tree593d31110007eabc1ba5f51f11d2429966749459 /Makefile.inc1
parent27bdd3bf8e42e4dae1f3b8b4a3ccafe2fbbfe0a4 (diff)
Notes
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc17
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 2614890dc649..c345e5967085 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -16,6 +16,8 @@
# -DNO_FORTRAN do not build g77 and related libraries.
# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
# -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
+# -DNO_PORTSUPDATE do not update ports in ${MAKE} update
+# -DNO_DOCUPDATE do not update doc in ${MAKE} update
# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
#
@@ -426,9 +428,12 @@ update:
.if defined(SUPFILE2)
@${SUP} ${SUPFLAGS} ${SUPFILE2}
.endif
-.if defined(PORTSSUPFILE)
+.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
.endif
+.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
+ @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
+.endif
.endif
.if defined(CVS_UPDATE)
@echo "--------------------------------------------------------------"