]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Add "-rtsopts" to my GHC_OPTIONS.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 23 Aug 2011 03:05:34 +0000 (23:05 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 23 Aug 2011 03:05:34 +0000 (23:05 -0400)
makefile

index b284d7ea57fdadabb33af4971b413961eb0f91c0..402f95667a4c404a13787998e0f9a88d56366521 100644 (file)
--- a/makefile
+++ b/makefile
@@ -11,7 +11,12 @@ GHC_WARNINGS += -fwarn-unused-do-bind
 
 BIN := spline3
 TMPDIR := /tmp
-GHC_OPTS := $(GHC_WARNINGS) -odir $(TMPDIR) -hidir $(TMPDIR) --make -o bin/${BIN}
+GHC_OPTS := $(GHC_WARNINGS)  \
+            -odir $(TMPDIR)  \
+            -hidir $(TMPDIR) \
+            --make           \
+            -rtsopts         \
+            -o bin/${BIN}
 
 
 .PHONY : test publish_doc doc src_html hlint