We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a838840 commit 4546e8cCopy full SHA for 4546e8c
Makefile
@@ -1,5 +1,5 @@
1
2
-all: ./build server client
+all: ./build ./webclient ./webserver
3
4
./deps/http-parser:
5
git clone --depth 1 git://github.com/joyent/http-parser.git ./deps/http-parser
@@ -11,13 +11,13 @@ all: ./build server client
11
git clone --depth 1 https://chromium.googlesource.com/external/gyp.git ./deps/gyp
12
13
./build: ./deps/gyp ./deps/libuv ./deps/http-parser
14
- ./configure
+ deps/gyp/gyp --depth=. -Goutput_dir=./out -Icommon.gypi --generator-output=./build -Dlibrary=static_library -f make
15
16
-client:
+./webclient:
17
make -C ./build/ webclient
18
cp ./build/out/Release/webclient ./webclient
19
20
-server:
+./webserver:
21
make -C ./build/ webserver
22
cp ./build/out/Release/webserver ./webserver
23
configure
0 commit comments