From: Michael Orlitzky Date: Thu, 2 Jan 2014 01:00:25 +0000 (-0500) Subject: Don't call clean before every compile (they're getting slow). X-Git-Tag: 0.0.1~127 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fhtsn-import.git;a=commitdiff_plain;h=2572fc6c5d491ebce29e7b375f7902eb71f1fb54 Don't call clean before every compile (they're getting slow). --- diff --git a/makefile b/makefile index 07530a6..d71ce4d 100644 --- a/makefile +++ b/makefile @@ -7,12 +7,10 @@ TEST_SRCS := $(shell find test/ -type f -name '*.hs') .PHONY : dist hlint $(BIN): $(PN).cabal $(SRCS) - runghc Setup.hs clean runghc Setup.hs configure --user --prefix=/ runghc Setup.hs build profile: $(PN).cabal $(SRCS) - runghc Setup.hs clean runghc Setup.hs configure --user --enable-executable-profiling --prefix=/ runghc Setup.hs build