[commit: ghc] wip/nfs-locking: Add makeBuilderArgs. (d27501d)
git at git.haskell.org
git at git.haskell.org
Fri Oct 27 00:12:30 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nfs-locking
Link : http://ghc.haskell.org/trac/ghc/changeset/d27501d1f279c145fd4c76809c6fab272f53cc4c/ghc
>---------------------------------------------------------------
commit d27501d1f279c145fd4c76809c6fab272f53cc4c
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date: Tue May 10 01:07:25 2016 +0100
Add makeBuilderArgs.
>---------------------------------------------------------------
d27501d1f279c145fd4c76809c6fab272f53cc4c
src/Settings/Builders/Make.hs | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/Settings/Builders/Make.hs b/src/Settings/Builders/Make.hs
new file mode 100644
index 0000000..85f16ac
--- /dev/null
+++ b/src/Settings/Builders/Make.hs
@@ -0,0 +1,11 @@
+module Settings.Builders.Make (makeBuilderArgs) where
+
+import Expression
+import Predicates (builder)
+import Settings
+
+makeBuilderArgs :: Args
+makeBuilderArgs = mconcat
+ [ builder (Make "testsuite/tests") ? arg "fast"
+ , builder (Make gmpBuildPath ) ? arg "MAKEFLAGS="
+ , builder (Make libffiBuildPath ) ? append ["MAKEFLAGS=", "install"] ]
More information about the ghc-commits
mailing list