From cf2580b7d24d6b4bfa18083f36f651be51ace5e5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rubino=20Gei=C3=9F?= Date: Tue, 20 Apr 2004 13:52:54 +0000 Subject: [PATCH] Do not enter ir/stat if statistics is disabled [r2688] --- Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 81b05102d..a40c393cc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -20,7 +20,11 @@ topdir := . # subdirectory under topdir subdir := . -subdirs := ir/adt ir/debug ir/tv ir/common ir/ident ir/ir ir/tr ir/ana ir/st ir/stat +subdirs := ir/adt ir/debug ir/tv ir/common ir/ident ir/ir ir/tr ir/ana ir/st + +ifeq ($(enable_statistics),yes) +subdirs += ir/stat +endif SOURCES := Makefile.in MakeRules.in MakeTargets\ aclocal.m4 config.h.in\ -- 2.20.1