openresty/Makefile

17 lines
279 B
C
Raw Permalink Normal View History

.PHONY: all test try-luajit try-lua clean
all:
./util/mirror-tarballs
2016-05-16 05:34:16 +00:00
test:
prove -I../test-nginx/lib -r t
2011-03-06 06:40:13 +00:00
2011-03-06 18:22:58 +00:00
try-luajit: all
2016-01-25 22:33:53 +00:00
cd openresty-`./util/ver` && ./configure --with-luajit
2011-03-06 18:22:58 +00:00
try-lua: all
2016-01-25 22:33:53 +00:00
cd openresty-`./util/ver` && ./configure && $(MAKE)
2011-03-06 18:22:58 +00:00
clean:
rm -rf openresty-*