diff options
author | Joey Hess <joey@kitenet.net> | 2013-02-27 20:07:30 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-02-27 20:11:25 -0400 |
commit | 3fdcec92d848e8b2709aaab6d4964254e11ef237 (patch) | |
tree | f59cf44b9325925a1d02ed86cbf9907122355b29 /Makefile | |
parent | d4a27c2c8aa9798e19108130b649533e2c9ca9c0 (diff) |
faster fast builds
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,11 +10,11 @@ build: $(all) # We bypass cabal, and only run the main ghc --make command for a # fast development built. Note: Does not rebuild C libraries. fast: dist/caballog - $$(grep 'ghc --make' dist/caballog | head -n 1 | sed 's/ -O / /') + $$(grep 'ghc --make' dist/caballog | head -n 1) ln -sf dist/build/git-annex/git-annex git-annex dist/caballog: - cabal configure -f-Production + cabal configure -f"-Production Fast" cabal build -v2 | tee $@ Build/SysConfig.hs: configure.hs Build/TestConfig.hs Build/Configure.hs |