X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=README;h=153ed244ed56cc22bde893522f5bcc788309642c;hp=4041e0d46969c284ab2b9fc6e75c5bd92048cdf4;hb=e2c936e2c47429d43b8d39ad9b9c3a05ffb8e722;hpb=39beffa2a6cb2e3cbb07396e8450372355d55a54 diff --git a/README b/README index 4041e0d..153ed24 100644 --- a/README +++ b/README @@ -1,36 +1,51 @@ -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 - hslibs collection of Haskell libraries - haggis the Haggis GUI toolkit - happy the Happy Haskell parser generator - hdirect Haskell interop tool - green-card a foreign function interface pre-processor for Haskell. - nofib the NoFib Haskell benchmarking suite - literate the Glasgow "literate programming" system - glafp-utils shared utility programs - mk GNU make setup used by all of fptools - docs documentation on the installing and using - the fptools suite. - -Components which are always part of a distribution (never stand-alone) -are "glafp-utils" and "mk" (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 boot $ make $ make install -where 'make' is whatever GNU make is called on your system. 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. +where 'make' is whatever GNU make is called on your system (GNU make +is *required*). 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 on the +GHC web pages: + + http://www.haskell.org/ghc/ + +-- +The GHC Team, glasgow-haskell-users@haskell.org