From b04577cd47448906624555a0668fe340fda8c02e Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Mon, 1 Jul 2019 11:03:05 -0700 Subject: [PATCH] feature: Makefile: added a 'clean' target to remove build artifacts. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9287634..7909469 100644 --- a/Makefile +++ b/Makefile @@ -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-*