From c2b9c1ff2ac1a45178f5994448038b4ab32bccb3 Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Thu, 29 Nov 2012 22:26:13 -0800 Subject: [PATCH] Compile with -O9 --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ccec4b1..c2cf996 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,15 @@ +GHCFLAGS=-O9 + all: shellcheck jsoncheck .tests : Done shellcheck: regardless : Conditionally compiling shellcheck - ghc --make shellcheck + ghc $(GHCFLAGS) --make shellcheck jsoncheck: regardless : Conditionally compiling shellcheck - ghc --make jsoncheck + ghc $(GHCFLAGS) --make jsoncheck .tests: *.hs */*.hs : Running unit tests