X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=README;h=0adcfdd9a20c46f986ab38f4156de0672dc11344;hb=8b4568eb029afb98bc7ef6d0b3ef28d573908f14;hp=590a8bb5dc35bb585f18faf2b26f727cd33223da;hpb=e7d21ee4f8ac907665a7e170c71d59e13a01da09;p=ghc-hetmet.git diff --git a/README b/README index 590a8bb..0adcfdd 100644 --- a/README +++ b/README @@ -1,20 +1,60 @@ -This is the root directory for functional-programming tools -distributed by the Computing Science Department at Glasgow University. -Simon Peyton Jones is the ringleader -of this effort. The tools are: - - ghc the Glasgow Haskell compilation system - haggis the Haggis GUI toolkit - happy the Happy Haskell parser generator - nofib the NoFib Haskell benchmarking suite - literate the Glasgow "literate programming" system - mkworld configuration system (derived from X11 imake) - glafp-utils shared utility programs - -The "literate" stuff is usually distributed *with* other systems, but -not necessarily. Components which are always part of a distribution -(never stand-alone) are "glafp-utils" and "mkworld" (a configuration -system). +fptools build system +==================== + +This is the top-level directory of the fptools build system. Several +packages are part of this build system; if you got this as part of a +source distribution (eg. for GHC), then you will have one or more of +the following directories: + + ghc The Glasgow Haskell Compiler + hslibs A Collection of Haskell libraries + haddock A Haskell documentation tool + haggis The Haggis GUI toolkit + happy The Happy Haskell parser generator + hdirect Haskell interop tool + greencard A foreign function interface pre-processor for Haskell. + libraries Haskell libraries (reqd. by ghc) + nofib The NoFib Haskell benchmarking suite + +Additional documentation for each project can be found in its +respective directory. + +In addition, the following directories contain project-independent bits: + + mk GNU make setup used by all of fptools + glafp-utils Shared utility programs + docs Documentation on the installing and using + the fptools build system. + distrib Tools and additional bits for building distributions + +Quick start: the following is *supposed* to work + + $ ./configure + $ make + $ make install + +where 'make' is whatever GNU make is called on your system (GNU make +is *required*). If there are any other tools required for the build, +then the configure script will detect them and tell you if any are +missing. For example, a working GHC installation is required for +building most of the tools (including GHC itself). + +The configuration script is a standard GNU autoconf script which +accepts all the normal arguments, eg. --prefix= to install the +package somewhere other than /usr/local. Try ./configure --help to +get a full list of the options. There is usually an ANNOUNCE* file with any distribution. Please consult that, or the /README file, to find out how to proceed. + +Full documentation for the fptools build system can be found in the +Building Guide: + + http://www.haskell.org/ghc/docs/latest/html/building/building-guide.html + +More information about GHC can be found here: + + http://www.haskell.org/ghc/ + +-- +The GHC Team, glasgow-haskell-users@haskell.org