summaryrefslogtreecommitdiff
path: root/SUBMAKEHELP
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2009-06-16 08:53:02 +0000
committerSimon Marlow <marlowsd@gmail.com>2009-06-16 08:53:02 +0000
commit2dfd2ac773482f26e393a199e9d04fc9c23d5794 (patch)
tree5f14075ae563bd705f87d96d36d48ee4e367a2f5 /SUBMAKEHELP
parent39253008705e3ca590afdfa1b87bfbb5a16da7e7 (diff)
downloadhaskell-2dfd2ac773482f26e393a199e9d04fc9c23d5794.tar.gz
mention 'make {html,ps,pdf}'
Diffstat (limited to 'SUBMAKEHELP')
-rw-r--r--SUBMAKEHELP29
1 files changed, 29 insertions, 0 deletions
diff --git a/SUBMAKEHELP b/SUBMAKEHELP
new file mode 100644
index 0000000000..e680ef20cf
--- /dev/null
+++ b/SUBMAKEHELP
@@ -0,0 +1,29 @@
+
+ make
+
+ Builds everything in this directory (including dependencies elsewhere
+ in the tree, if necessary)
+
+ make fast
+
+ The same as 'make', but omits some phases and does not
+ recalculate dependencies. Useful for saving time if you are sure
+ the rest of the tree is up to date.
+
+ make clean
+ make distclean
+ make maintainer-clean
+
+ Clean just this directory
+
+ make html
+ make pdf
+ make ps
+
+ Make documentation in this directory (if any)
+
+ make <file>
+
+ Bring a particular file up to date, e.g. make dist/build/Module.o
+ The name <file> is relative to the current directory
+