openresty/Makefile

15 lines
238 B
Makefile
Raw Normal View History

.PHONY: all test try-luajit try-lua
all:
./util/mirror-tarballs
2011-03-06 16:11:15 +00:00
test: all
prove -r t
2011-03-06 06:40:13 +00:00
2011-03-06 18:22:58 +00:00
try-luajit: all
2011-03-06 18:19:54 +00:00
cd ngx_openresty-`./util/ver` && ./configure --with-luajit
2011-03-06 18:22:58 +00:00
try-lua: all
cd ngx_openresty-`./util/ver` && ./configure && $(MAKE)
2011-03-06 18:22:58 +00:00