High Performance Web Platform Based on Nginx and LuaJIT
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.PHONY: all test try-luajit try-lua clean |
|
|
|
all: |
|
./util/mirror-tarballs |
|
|
|
test: |
|
prove -I../test-nginx/lib -r t |
|
|
|
try-luajit: all |
|
cd openresty-`./util/ver` && ./configure --with-luajit |
|
|
|
try-lua: all |
|
cd openresty-`./util/ver` && ./configure && $(MAKE) |
|
|
|
clean: |
|
rm -rf openresty-*
|
|
|