summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-04-07 08:52:19 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-04-07 08:52:19 +0000
commit422eaf986e456ed0e16647445f7bdcb3018eb6c2 (patch)
tree6e34b44b9caf308c0eccdc9fd25ef1ef39700b3c /docs
parent693342ffbb61e1da4c009059755fa0b9b1396bb8 (diff)
downloadhaskell-422eaf986e456ed0e16647445f7bdcb3018eb6c2.tar.gz
remove the last bits of the ghc/ subdir
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile6
-rw-r--r--docs/index.html56
2 files changed, 62 insertions, 0 deletions
diff --git a/docs/Makefile b/docs/Makefile
index b384a934c6..267de1dbf7 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -3,4 +3,10 @@ include $(TOP)/mk/boilerplate.mk
SUBDIRS = building docbook-cheat-sheet ext-core storage-mgt users_guide
+PAGES = index.html
+
+install-docs :: $(PAGES)
+ $(INSTALL_DIR) $(datadir)/html
+ $(INSTALL_DATA) $(INSTALL_OPTS) $(PAGES) $(datadir)/html
+
include $(TOP)/mk/target.mk
diff --git a/docs/index.html b/docs/index.html
new file mode 100644
index 0000000000..204e20a378
--- /dev/null
+++ b/docs/index.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<HTML>
+ <HEAD>
+ <TITLE>GHC Documentation</TITLE>
+ </HEAD>
+
+ <BODY>
+
+ <H1>GHC Documentation</H1>
+
+ <P>
+ Welcome to GHC!
+ </P>
+
+ <P>
+ This is the top of the GHC documentation tree, where you will find
+ links to all the supplied documentation about GHC and its libraries.
+ </P>
+
+ <UL>
+ <LI>
+ <P>
+ <B><A HREF="users_guide/index.html">The User's Guide</A></B>
+ </P>
+ <P>
+ The User's Guide has all you need to know about using GHC:
+ command line options, language extensions, GHCi, etc.
+ </P>
+ </LI>
+
+ <LI>
+ <P>
+ <B><A HREF="libraries/index.html">Libraries</A></B>
+ </P>
+ <P>
+ Documentation for the libraries that come with GHC.
+ </P>
+ </LI>
+
+ <LI>
+ <P>
+ <B><A HREF="Cabal/index.html">Cabal</A></B>
+ </P>
+ <P>An infrastructure for building and distributing Haskell
+ software.</P>
+ </LI>
+
+ <LI>
+ <P>
+ <B><A HREF="building/index.html">Building Guide</A></B>
+ </P>
+ <P>Information on buiding GHC from source, and porting GHC to a new platform.</P>
+ </LI>
+ </UL>
+ </BODY>
+</HTML>