Makefile now builds using cabal, taking advantage of cabal's automatic detection of appropriate build flags.

The only thing lost is ./ghci

Speed: make fast used to take 20 seconds here, when rebuilding from
touching Command/Unused.hs. With cabal, it's 29 seconds.
This commit is contained in:
Joey Hess 2013-02-27 02:39:22 -04:00
parent 32aee1bb3e
commit cbd53b4a8c
18 changed files with 56 additions and 141 deletions

View file

@ -14,7 +14,7 @@ import Common
import Control.Concurrent
import System.Posix.Signals
#ifndef WITH_ANDROID
#ifndef __ANDROID__
import System.Posix.Terminal
#endif
@ -53,7 +53,7 @@ waitForTermination :: IO ()
waitForTermination = do
lock <- newEmptyMVar
check softwareTermination lock
#ifndef WITH_ANDROID
#ifndef __ANDROID__
whenM (queryTerminal stdInput) $
check keyboardSignal lock
#endif