diff options
author | root <root@krebs> | 2011-06-29 21:06:26 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-06-29 21:06:26 +0200 |
commit | 68f240ac326dc551ceb17f3349911310cdfae1f2 (patch) | |
tree | 85e71f935f2e2b04f81c937364dac2ec39fc5d51 /node/Makefile | |
parent | 2a58f1af8074963ccbeec13a10811fefe2ceb113 (diff) | |
parent | 3cf2e3aeef1f62429281399b2e7e3ae98408260d (diff) |
Merge branch 'master' of github.com:/krebscode/painload
Diffstat (limited to 'node/Makefile')
-rw-r--r-- | node/Makefile | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/node/Makefile b/node/Makefile index 00e27b6f..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-%: - cur http://nodejs.org/dist/$@.tar.gz | tar zx +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 |