diff options
author | user <user@bergwerk> | 2011-06-19 23:42:50 +0000 |
---|---|---|
committer | user <user@bergwerk> | 2011-06-19 23:45:37 +0000 |
commit | c4472c7e701dc0fcd0ebe01c9f4111cf22722e0a (patch) | |
tree | e28b36800117860080829f492819983dc01ac4e2 /node/Makefile | |
parent | b9e74b83e4153f494a2aa1bc35e861a991847e6c (diff) |
node: install curl
Diffstat (limited to 'node/Makefile')
-rw-r--r-- | node/Makefile | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/node/Makefile b/node/Makefile index 6428ff0f..20e15c70 100644 --- a/node/Makefile +++ b/node/Makefile @@ -1,8 +1,24 @@ -.PHONY: all -all: node-v0.4.8 - cd $< && ./configure && make && make install +.PHONY: all build install -node-%: +all: + @echo "You are made of stupid!"; exit 23 + +build: node node/build/default/node + cd node && ./configure && make + +install: build + cd node && make install + +node: node-git + ln -vsnf $< $@ + +node-git: + git clone https://github.com/joyent/node node-git + +node-%: /usr/bin/curl curl http://nodejs.org/dist/$@.tar.gz | tar zx + +/usr/bin/curl: + apt-get install --yes curl |