Skip to content

Commit 58e48b4

Browse files
author
Dane Springmeyer
committed
make a note fo Haywire and move deps download into makefile
1 parent 9f2fb81 commit 58e48b4

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

Makefile

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11

22
all: ./build server client
33

4-
./build:
4+
./deps/http-parser:
5+
git clone --depth 1 git://github.com/joyent/http-parser.git ./deps/http-parser
6+
7+
./deps/libuv:
8+
git clone --depth 1 git://github.com/joyent/libuv.git ./deps/libuv
9+
10+
./deps/gyp:
11+
git clone --depth 1 https://chromium.googlesource.com/external/gyp.git ./deps/gyp
12+
13+
./build: ./deps/gyp ./deps/libuv ./deps/http-parser
514
./configure
615

716
client:

README.md

+3-9
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,14 @@ Based on http://vimeo.com/24713213
99

1010
This is not a real server and never will be - purely experimental.
1111

12-
git ci -a -m "update to latest libuv + move to gyp for building"
12+
If you are interested in more robust server on top of libuv see [Haywire](https://github.com/kellabyte/Haywire).
13+
14+
1315
## Build
1416

15-
mkdir deps && cd deps
16-
git clone git://github.com/joyent/http-parser.git
17-
git clone git://github.com/joyent/libuv.git
18-
git clone https://chromium.googlesource.com/external/gyp.git
19-
cd ../
20-
./configure
2117
make
2218

2319
## TODO
2420

2521
- leverage threadpool
26-
- build using pure gyp
27-
- build as c++
2822
- signal(SIGPIPE, SIG_IGN)

0 commit comments

Comments
 (0)