Use SUP and SUPFLAGS variables to change them to cvsup if needed

This commit is contained in:
Andrey A. Chernov 1996-10-05 18:36:38 +00:00
parent 242ab807c6
commit a42830afaa

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.103 1996/09/21 06:06:41 ache Exp $
# $Id: Makefile,v 1.104 1996/10/04 08:48:27 peter Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include
@ -107,6 +107,9 @@ CLEANDIR= cleandir
.endif
.endif
SUP?= sup
SUPFLAGS?= -v
#
# While building tools for bootstrapping, we dont need to waste time on
# profiled libraries or man pages. This speeds things up somewhat.
@ -274,12 +277,12 @@ update:
@echo "--------------------------------------------------------------"
@echo "Running sup"
@echo "--------------------------------------------------------------"
@sup -v ${SUPFILE}
@${SUP} ${SUPFLAGS} ${SUPFILE}
.if defined(SUPFILE1)
@sup -v ${SUPFILE1}
@${SUP} ${SUPFLAGS} ${SUPFILE1}
.endif
.if defined(SUPFILE2)
@sup -v ${SUPFILE2}
@${SUP} ${SUPFLAGS} ${SUPFILE2}
.endif
.endif
.if defined(CVS_UPDATE)