feature: Makefile: added a 'clean' target to remove build artifacts.

pull/503/head
Thibault Charbonnier 5 years ago committed by Thibault Charbonnier
parent 836c8792d2
commit b04577cd47

@ -1,4 +1,4 @@
.PHONY: all test try-luajit try-lua
.PHONY: all test try-luajit try-lua clean
all:
./util/mirror-tarballs
@ -12,3 +12,5 @@ try-luajit: all
try-lua: all
cd openresty-`./util/ver` && ./configure && $(MAKE)
clean:
rm -rf openresty-*

Loading…
Cancel
Save