From 305b8056ecdd5dccb2e103969c8074f0e0e7f020 Mon Sep 17 00:00:00 2001 From: brezak Date: Wed, 7 Jul 1993 12:55:48 +0000 Subject: [PATCH] Make regress only if directory exists. It can be optional. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e61dc44c34a4..24398c6e4860 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.12 1993/07/04 14:02:11 cgd Exp $ +# $Id: Makefile,v 1.13 1993/07/07 12:55:48 brezak Exp $ # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW @@ -7,6 +7,7 @@ SUBDIR+= gnu SUBDIR+= sys +.if exists(regress) .ifmake !(install) SUBDIR+= regress .endif @@ -14,5 +15,6 @@ SUBDIR+= regress regression-tests: @echo Running regression tests... @( cd regress; make regress ) +.endif .include