Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-06-30 15:27:25 +0400
committerRyan <ry@tinyclouds.org>2009-06-30 15:27:25 +0400
commita3d77ee4e7662a0ccc2d9989359c441e680955c8 (patch)
treed82e897ce418472e9c7c10c438f6f9424b9f7b11 /configure
parenta623d763c189749ff8ce1f0cc25225be95686110 (diff)
Add new documentation (using asciidoc!)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure13
1 files changed, 9 insertions, 4 deletions
diff --git a/configure b/configure
index a3a2ed6f425..a5865ab28ff 100755
--- a/configure
+++ b/configure
@@ -96,13 +96,18 @@ uninstall:
test: all
python tools/test.py --mode=release
-
-test-debug: all
- python tools/test.py --mode=debug
test-all: all
python tools/test.py --mode=debug,release
+website: website/api.html website/index.html
+
+website/api.html: website/api.txt
+ asciidoc -a toc -o website/api.html website/api.txt
+
+website-upload: website
+ scp website/* linode:~/tinyclouds/node/
+
clean:
@$WAF clean
@@ -118,7 +123,7 @@ check:
dist:
@$WAF dist
-.PHONY: clean dist distclean check uninstall install all test
+.PHONY: clean dist distclean check uninstall install all test test-all website website-upload
EOF
}