about summary refs log tree commit diff stats
path: root/Makefile
blob: 2de7a208fca29f9338dca752a10b65ae1562b13d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
test:
	./gyp_uv_link test -Duv_dir=./test/deps/libuv
	make -C out/ -j8
	./out/Release/uv_link_t-test

example:
	./gyp_uv_link example -Duv_dir=./test/deps/libuv
	make -C out/ -j8
	./out/Release/uv_link_t-example

dist:
	./gyp_uv_link -Duv_dir=./test/deps/libuv
	make -C out/ -j8

.PHONY: test example dist