libuv/Makefile

25 lines
368 B
Makefile
Raw Normal View History

2011-08-03 22:07:33 +00:00
BUILDTYPE ?= Release
2011-08-03 22:07:33 +00:00
all: out/Makefile
$(MAKE) -C out BUILDTYPE=$(BUILDTYPE)
2011-04-19 06:05:44 +00:00
2011-08-03 22:07:33 +00:00
out/Makefile: build/gyp
build/gyp_uv -f make
2011-08-03 22:07:33 +00:00
build/gyp:
svn co http://gyp.googlecode.com/svn/trunk@983 build/gyp
2011-08-03 22:07:33 +00:00
clean:
rm -rf out
2011-08-03 22:07:33 +00:00
distclean:
rm -rf out
2011-04-14 18:19:36 +00:00
2011-08-03 22:07:33 +00:00
test: all
./out/$(BUILDTYPE)/run-tests
2011-08-03 22:07:33 +00:00
bench: all
./out/$(BUILDTYPE)/run-benchmarks
2011-08-03 22:07:33 +00:00
.PHONY: all clean distclean test bench