From 019ad00f4989b2e81d62c30c7a4de4aadc30ebdc Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 1 Sep 2007 11:30:18 +0000 Subject: [PATCH] Set -Wall -fno-warn-name-shadowing in compiler/ when stage /= 2 --- compiler/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler/Makefile b/compiler/Makefile index 6f3c94c..67962bc 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -165,6 +165,10 @@ odir=stage$(stage) SRC_HC_OPTS += $(patsubst %, -i$(odir)/%, $(ALL_DIRS)) +ifneq "$(stage)" "1" +SRC_HC_OPTS += -Wall -fno-warn-name-shadowing +endif + HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS)))) C_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(C_SRCS)))) -- 1.7.10.4