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 07:34:16 +02:00
test:
prove -I../test-nginx/lib -r t
2011-03-06 07:40:13 +01:00
2011-03-06 19:22:58 +01:00
try-luajit: all
2016-01-25 23:33:53 +01:00
cd openresty-`./util/ver` && ./configure --with-luajit
2011-03-06 19:22:58 +01:00
try-lua: all
2016-01-25 23:33:53 +01:00
cd openresty-`./util/ver` && ./configure && $(MAKE)
2011-03-06 19:22:58 +01:00
clean:
rm -rf openresty-*