summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-03-03 19:17:33 +0100
committerRyan <ry@tinyclouds.org>2009-03-03 19:17:33 +0100
commita890b674061ff9e923a9f6bc106eadd4dab28649 (patch)
tree35d0f39f754da682d54ab290d26bc1471f10ff53 /Makefile
parentf16e50d38713e89e02a4afbf69b23a55c0605740 (diff)
downloadnode-new-a890b674061ff9e923a9f6bc106eadd4dab28649.tar.gz
Add beginnings of the setTimeout interface
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5b6082f995..b1e812e070 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ ifdef EVDIR
LDFLAGS += -L$(EVDIR)/lib
endif
-node: node.o node_tcp.o node_http.o oi_socket.o oi_async.o oi_buf.o ebb_request_parser.o
+node: node.o node_tcp.o node_http.o node_timer.o oi_socket.o oi_async.o oi_buf.o ebb_request_parser.o
g++ -o node $^ $(LDFLAGS) $(V8LIB)
node.o: node.cc
@@ -21,6 +21,9 @@ node_tcp.o: node_tcp.cc
node_http.o: node_http.cc
g++ $(CFLAGS) -c $<
+
+node_timer.o: node_timer.cc
+ g++ $(CFLAGS) -c $<
oi_socket.o: deps/oi/oi_socket.c deps/oi/oi_socket.h
gcc $(CFLAGS) -c $<