diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-07-07 19:18:53 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-07-07 19:18:53 +0000 |
commit | 8a2809c29de9f23eba7ca682b48390033a9d40f6 (patch) | |
tree | 87b75626bfeee4eea7d04456877a16e40d077533 /validate | |
parent | 8100c58a929d993d2dd7022412ed6113cf97fba7 (diff) | |
download | haskell-8a2809c29de9f23eba7ca682b48390033a9d40f6.tar.gz |
allow build settings to be overriden by adding mk/validate.mk
Diffstat (limited to 'validate')
-rw-r--r-- | validate | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -7,9 +7,15 @@ fi if [ -f mk/build.mk ]; then mv mk/build.mk mk/build.mk.bak fi + +# The default is a "quick" build echo BuildFlavour=quick >mk/build.mk cat mk/build.mk.sample >>mk/build.mk +# You can override the default validate settings using mk/validate.mk +# e.g. you could add GhcLibWays=p to test profiling. +echo '-include $(TOP)/mk/validate.mk' >>mk/build.mk + sh boot ./configure # ToDo: configure args |