Add an ".ifmake regress" to avoid warning during 'make world'.

Noticed by:	bde
This commit is contained in:
Eivind Eklund 1998-04-19 14:27:45 +00:00
parent 878739de43
commit eb57f92476
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35295

View file

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.21 1998/03/10 14:00:59 peter Exp $
# $Id: Makefile,v 1.22 1998/03/28 19:06:21 eivind Exp $
.include "${.CURDIR}/../Makefile.inc"
@ -40,6 +40,7 @@ CFLAGS+= -DENCRYPTION
# Regression test support
#
CLEANDIRS+=cvs-sanity
.ifmake regress
USERID!=id -u
regress:
mkdir -p ${.OBJDIR}/cvs-sanity/tmp ${.OBJDIR}/cvs-sanity/work
@ -55,6 +56,6 @@ regress:
cd ${.OBJDIR}/cvs-sanity/work;\
sh ${CVSDIR}/src/sanity.sh ${.OBJDIR}/cvs)
.endif
.endif
.include <bsd.prog.mk>