diff options
author | Iavor S. Diatchki <diatchki@galois.com> | 2012-04-27 13:24:05 -0700 |
---|---|---|
committer | Iavor S. Diatchki <diatchki@galois.com> | 2012-04-27 13:24:05 -0700 |
commit | d209588a40928e21a253bc9341689b5174c00cfc (patch) | |
tree | e255855567a1d7b8916698cb808da65103bb090c /rules/package-config.mk | |
parent | 3b528914877a8d45c2487988f05e6ecc092bebf1 (diff) | |
download | haskell-d209588a40928e21a253bc9341689b5174c00cfc.tar.gz |
A build-system tweak for more readable build output.
This change reduces the (default) verbosity of the build system.
This makes it easier to spot warnings in the output and, also, it
makes it easier to estimate how far along are we in the build process
by just glancing at the output.
To get the traditional fully verbose output, set V=1, like this:
make V=1
Diffstat (limited to 'rules/package-config.mk')
-rw-r--r-- | rules/package-config.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/rules/package-config.mk b/rules/package-config.mk index e0c9757862..1a80cb3421 100644 --- a/rules/package-config.mk +++ b/rules/package-config.mk @@ -55,6 +55,13 @@ $1_$2_MORE_HC_OPTS += -no-user-package-conf $1_$2_MORE_HC_OPTS += -rtsopts endif +# Used by pretty_commands.mk +label_$1_$2_CC=CC +label_$1_$2_AS=AS +label_$1_$2_AR=AR +label_$1_$2_HC=HC [stage $3] +label_$1_$2_GHC_PKG=GHC PKG + # Useful later $1_$2_SLASH_MODS = $$(subst .,/,$$($1_$2_MODULES)) |