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

This commit is contained in:
Thibault Charbonnier 2019-07-01 11:03:05 -07:00 committed by Thibault Charbonnier
parent 836c8792d2
commit b04577cd47
1 changed files with 3 additions and 1 deletions

View File

@ -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-*