initial commit
This commit is contained in:
36
dist/build/autogen/Paths_hgraph.hs
vendored
Normal file
36
dist/build/autogen/Paths_hgraph.hs
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
module Paths_hgraph (
|
||||
version,
|
||||
getBinDir, getLibDir, getDataDir, getLibexecDir,
|
||||
getDataFileName, getSysconfDir
|
||||
) where
|
||||
|
||||
import qualified Control.Exception as Exception
|
||||
import Data.Version (Version(..))
|
||||
import System.Environment (getEnv)
|
||||
import Prelude
|
||||
|
||||
catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
|
||||
catchIO = Exception.catch
|
||||
|
||||
|
||||
version :: Version
|
||||
version = Version {versionBranch = [0,0,1], versionTags = []}
|
||||
bindir, libdir, datadir, libexecdir, sysconfdir :: FilePath
|
||||
|
||||
bindir = "/home/sdressel/.cabal/bin"
|
||||
libdir = "/home/sdressel/.cabal/lib/x86_64-linux-ghc-7.6.3/hgraph-0.0.1"
|
||||
datadir = "/home/sdressel/.cabal/share/x86_64-linux-ghc-7.6.3/hgraph-0.0.1"
|
||||
libexecdir = "/home/sdressel/.cabal/libexec"
|
||||
sysconfdir = "/home/sdressel/.cabal/etc"
|
||||
|
||||
getBinDir, getLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
|
||||
getBinDir = catchIO (getEnv "hgraph_bindir") (\_ -> return bindir)
|
||||
getLibDir = catchIO (getEnv "hgraph_libdir") (\_ -> return libdir)
|
||||
getDataDir = catchIO (getEnv "hgraph_datadir") (\_ -> return datadir)
|
||||
getLibexecDir = catchIO (getEnv "hgraph_libexecdir") (\_ -> return libexecdir)
|
||||
getSysconfDir = catchIO (getEnv "hgraph_sysconfdir") (\_ -> return sysconfdir)
|
||||
|
||||
getDataFileName :: FilePath -> IO FilePath
|
||||
getDataFileName name = do
|
||||
dir <- getDataDir
|
||||
return (dir ++ "/" ++ name)
|
51
dist/build/autogen/cabal_macros.h
vendored
Normal file
51
dist/build/autogen/cabal_macros.h
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
/* DO NOT EDIT: This file is automatically generated by Cabal */
|
||||
|
||||
/* package QuickCheck-2.6 */
|
||||
#define VERSION_QuickCheck "2.6"
|
||||
#define MIN_VERSION_QuickCheck(major1,major2,minor) (\
|
||||
(major1) < 2 || \
|
||||
(major1) == 2 && (major2) < 6 || \
|
||||
(major1) == 2 && (major2) == 6 && (minor) <= 0)
|
||||
|
||||
/* package Stream-0.4.6.1 */
|
||||
#define VERSION_Stream "0.4.6.1"
|
||||
#define MIN_VERSION_Stream(major1,major2,minor) (\
|
||||
(major1) < 0 || \
|
||||
(major1) == 0 && (major2) < 4 || \
|
||||
(major1) == 0 && (major2) == 4 && (minor) <= 6)
|
||||
|
||||
/* package base-4.6.0.1 */
|
||||
#define VERSION_base "4.6.0.1"
|
||||
#define MIN_VERSION_base(major1,major2,minor) (\
|
||||
(major1) < 4 || \
|
||||
(major1) == 4 && (major2) < 6 || \
|
||||
(major1) == 4 && (major2) == 6 && (minor) <= 0)
|
||||
|
||||
/* package bytestring-0.10.0.2 */
|
||||
#define VERSION_bytestring "0.10.0.2"
|
||||
#define MIN_VERSION_bytestring(major1,major2,minor) (\
|
||||
(major1) < 0 || \
|
||||
(major1) == 0 && (major2) < 10 || \
|
||||
(major1) == 0 && (major2) == 10 && (minor) <= 0)
|
||||
|
||||
/* package ghc-7.6.3 */
|
||||
#define VERSION_ghc "7.6.3"
|
||||
#define MIN_VERSION_ghc(major1,major2,minor) (\
|
||||
(major1) < 7 || \
|
||||
(major1) == 7 && (major2) < 6 || \
|
||||
(major1) == 7 && (major2) == 6 && (minor) <= 3)
|
||||
|
||||
/* package monad-par-0.3.4.5 */
|
||||
#define VERSION_monad_par "0.3.4.5"
|
||||
#define MIN_VERSION_monad_par(major1,major2,minor) (\
|
||||
(major1) < 0 || \
|
||||
(major1) == 0 && (major2) < 3 || \
|
||||
(major1) == 0 && (major2) == 3 && (minor) <= 4)
|
||||
|
||||
/* package parallel-3.2.0.3 */
|
||||
#define VERSION_parallel "3.2.0.3"
|
||||
#define MIN_VERSION_parallel(major1,major2,minor) (\
|
||||
(major1) < 3 || \
|
||||
(major1) == 3 && (major2) < 2 || \
|
||||
(major1) == 3 && (major2) == 2 && (minor) <= 0)
|
||||
|
BIN
dist/build/hgraph/hgraph
vendored
Executable file
BIN
dist/build/hgraph/hgraph
vendored
Executable file
Binary file not shown.
BIN
dist/build/hgraph/hgraph-tmp/Main.hi
vendored
Normal file
BIN
dist/build/hgraph/hgraph-tmp/Main.hi
vendored
Normal file
Binary file not shown.
BIN
dist/build/test-hgraph/test-hgraph
vendored
Executable file
BIN
dist/build/test-hgraph/test-hgraph
vendored
Executable file
Binary file not shown.
BIN
dist/build/test-hgraph/test-hgraph-tmp/Main.hi
vendored
Normal file
BIN
dist/build/test-hgraph/test-hgraph-tmp/Main.hi
vendored
Normal file
Binary file not shown.
Reference in New Issue
Block a user