----------------------------------------------------------------------------- -- | -- Module : Distribution.Make -- Copyright : Martin Sjögren 2004 -- -- Maintainer : Isaac Jones -- Stability : alpha -- Portability : GHC -- -- Explanation: Uses the parsed command-line from Distribution.Setup -- in order to build haskell tools using a backend build system based -- on Make. {- All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Isaac Jones nor the names of other contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -} module Distribution.Make ( module Distribution.Package, License(..), Version(..), defaultMain, defaultMainNoRead ) where -- local import Distribution.Package --must not specify imports, since we're exporting moule. import Distribution.PackageDescription import Distribution.Setup --(parseArgs, Action(..), optionHelpString) import Distribution.Simple.Utils (maybeExit, defaultPackageDesc) import Distribution.License (License(..)) import Distribution.Version (Version(..)) import System.Environment(getArgs) import Data.List ( intersperse ) import System.IO (hPutStr, stderr) import System.Cmd import System.Exit {- Basic assumptions ----------------- Obviously we assume that there is a configure script, and that after the ConfigCmd has been run, there is a Makefile. ConfigCmd: We assume the configure script accepts a --with-hc flag BuildCmd: We assume the default Makefile target will build everything InstallCmd: We assume there is an install target and a variable $(prefix) that can be overridden (./Setup --install-prefix=foo -> make prefix=foo install) Note that we assume that this does *not* register the package! SDistCmd: We assume there is an dist target RegisterCmd: We assume there is a register target and a variable $(user) UnregisterCmd: We assume there is an unregister target -} configureArgs :: ConfigFlags -> String configureArgs (flavour, mb_hc_path, mb_hc_pkg_path, mb_prefix) = unwords (hc_flag ++ hc_pkg_flag ++ prefix_flag) where hc_flag = case (flavour, mb_hc_path) of (_, Just hc_path) -> ["--with-hc=" ++ hc_path] (Just hc, Nothing) -> ["--with-hc=" ++ showHC hc] (Nothing,Nothing) -> [] hc_pkg_flag = case mb_hc_pkg_path of Just hc_pkg_path -> ["--with-hc-pkg=" ++ hc_pkg_path] Nothing -> [] prefix_flag = case mb_prefix of Just p -> ["--with-hc=" ++ p] Nothing -> [] showHC GHC = "ghc" showHC NHC = "nhc98" showHC Hugs = "hugs" exec :: String -> IO a exec cmd = system cmd >>= exitWith defaultMain :: IO () defaultMain = defaultPackageDesc >>= readPackageDescription >>= defaultMainNoRead defaultMainNoRead :: PackageDescription -> IO () defaultMainNoRead pkg_descr = do args <- getArgs (action, args) <- parseGlobalArgs args case action of ConfigCmd flags -> do (flags, _, args) <- parseConfigureArgs flags args [] no_extra_flags args exec $ "./configure " ++ configureArgs flags BuildCmd -> do (_, _, args) <- parseBuildArgs 0 args [] no_extra_flags args exec "make" CleanCmd -> do (_, args) <- parseCleanArgs args [] no_extra_flags args exec "make clean" CopyCmd mprefix -> do (mprefix, _, args) <- parseCopyArgs mprefix args [] no_extra_flags args maybeExit $ system $ "make install" ++ maybe "" (" prefix="++) mprefix InstallCmd uInst -> do (uInst, _, args) <- parseInstallArgs uInst args [] no_extra_flags args maybeExit $ system $ "make install" exec "make register" SDistCmd -> do (_, args) <- parseSDistArgs args [] no_extra_flags args exec "make dist" RegisterCmd uInst -> do (uInst, _, args) <- parseRegisterArgs uInst args [] no_extra_flags args exec "make register" UnregisterCmd -> do (_, args) <- parseUnregisterArgs args [] no_extra_flags args exec "make unregister" no_extra_flags :: [String] -> IO () no_extra_flags [] = return () no_extra_flags extra_flags = do hPutStr stderr $ "Unrecognised flags: " ++ concat (intersperse "," (extra_flags)) exitWith (ExitFailure 1)