summaryrefslogtreecommitdiffstats
path: root/node
diff options
context:
space:
mode:
authormakefu <makefu@syntax-fehler.de>2011-06-23 01:11:50 +0200
committermakefu <makefu@syntax-fehler.de>2011-06-23 01:11:50 +0200
commit99bf20b83c5161866e96df918ab1a98a841c4e88 (patch)
tree162bb4350e15552b449c118e426dd11f0fcd056a /node
parentaf2705c70a245b3f281f7a64039b6d50976fb982 (diff)
parent9ab87e479e1f75665bc69623eeb740758acb3f0a (diff)
merged Makefile, install lmsensors AND tmux
Diffstat (limited to 'node')
-rw-r--r--node/Makefile26
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