diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-11-07 06:17:56 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-11-07 06:17:56 +0000 |
commit | 9159ebd3c124bd1d5f6cea5a26bbada577ca8d41 (patch) | |
tree | 4c9b31801465d8a4c7349a129ae7f5fe655cc2cf | |
parent | afd92376d6bd2380216a5f1a56eb8b81093b2a54 (diff) | |
download | pandoc-9159ebd3c124bd1d5f6cea5a26bbada577ca8d41.tar.gz |
Modified INSTALL instructions; require "make build-all" before
"make install-all".
git-svn-id: https://pandoc.googlecode.com/svn/trunk@76 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r-- | INSTALL | 35 |
1 files changed, 17 insertions, 18 deletions
@@ -2,17 +2,16 @@ # Installing GHC -To compile Pandoc, you'll need [GHC] version 6.4 or greater. - -If you don't have GHC already, you can get it from the -[GHC Download] page. +To compile Pandoc, you'll need [GHC] version 6.4 or greater. If +you don't have GHC already, you can get it from the [GHC Download] +page. [GHC]: http://www.haskell.org/ghc/ [GHC Download]: http://www.haskell.org/ghc/download.html -You'll also need standard build tools: GNU `make`, `sed`, `bash`, and `perl`. -These are standard on unix systems (including MacOS X). If you're -using Windows, you can install [Cygwin]. +You'll also need standard build tools: GNU `make`, `sed`, `bash`, +and `perl`. These are standard on unix systems (including MacOS +X). If you're using Windows, you can install [Cygwin]. [Cygwin]: http://www.cygwin.com/ @@ -30,29 +29,29 @@ using Windows, you can install [Cygwin]. 4. Install: - make install + sudo make install Note: This installs `pandoc`, together with its wrappers and - documentation, into the `/usr/local` directory, which requires root - privileges. If you don't have root privileges or would prefer to - install `pandoc` and the associated shell scripts into your `~/bin` - directory, type this instead: + documentation, into the `/usr/local` directory. If you don't + have root privileges or would prefer to install `pandoc` and + the associated wrappers into your `~/bin` directory, type + this instead: PREFIX=~ make install-exec -5. Install everthing, including Haskell libraries and library documentation - (optional): +5. Build and install the Haskell libraries and library + documentation (optional): - make install-all + make build-all + sudo make install-all # Removing Pandoc Each of the installation steps described above can be reversed: - make uninstall + sudo make uninstall PREFIX=~ make uninstall-exec - make uninstall-all - + sudo make uninstall-all |