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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-04-25 03:41:27 +0400
committerisaacs <i@izs.me>2010-04-25 03:41:27 +0400
commitc638e80b601ca2d6478b268cf4320406e6aea27e (patch)
tree640119204225282f13a0c1cbadda3ec5080d0f0f /Makefile
parent3695c971daf2663d179a0197476adc94a871c702 (diff)
Add a makefile to build the man page.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 000000000..d7f098689
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+
+install: doc
+ node install-npm.js
+ mv npm.1 /usr/local/share/man/man1/npm.1
+
+doc:
+ ronn --roff README.md > npm.1
+
+.PHONY: install doc