From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mail-a.sr.ht; dkim=pass header.d=johnnyrichard.com header.i=@johnnyrichard.com Received: from out-182.mta0.migadu.com (out-182.mta0.migadu.com [IPv6:2001:41d0:1004:224b::b6]) by mail-a.sr.ht (Postfix) with ESMTPS id 95CF8201B4 for <~johnnyrichard/olang-devel@lists.sr.ht>; Wed, 21 Feb 2024 21:23:44 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=johnnyrichard.com; s=key1; t=1708550624; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pMiX1uU4vJaSYx9Vn2oc9DX/98pjlt1cGu/OgKDOVEg=; b=ld6G4abcmfkLI/FMm1QTDT+Z4SLqj540wkDwsCGGG9xDVyNq5+zuTjkDI3/uokqephCmsx KbDQbP04Q47ZDcVJJ7+FrLtKvtj2WPE0bdIrzEz+PGSqXGU1eu3Ji3qA+jzLLhaqtFnDAI KS9JZRX6hWIAwKCOg4ECz/+/KfnoV6aMxjMQYc+zPCOsrgVS7MUS2vCmOt5sWR9NnaQ/Wa +pHi8rTfVpmFLjXcGtJ4+eod59kj1AbfVSsyKTKch/P8+NlpIki2edgdGAHXtbZ0a7rzDk ORFj3K7eK7KYrn7JH98ZXOf72SI27RsY62wgw90wjmp5FnvioprXEn2pHXMM2w== From: Johnny Richard To: ~johnnyrichard/olang-devel@lists.sr.ht Cc: Johnny Richard Subject: [PATCH olang 1/2] build: add clean target on root Makefile Date: Wed, 21 Feb 2024 23:20:11 +0100 Message-ID: <20240221222226.67254-2-johnny@johnnyrichard.com> In-Reply-To: <20240221222226.67254-1-johnny@johnnyrichard.com> References: <20240221222226.67254-1-johnny@johnnyrichard.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-TUID: yptKGX6fEhs5 In order to make easier recompile the whole project and start from a fresh environemnt, this patch introduce a **clean** target on project root Makefile which uses the tests/unit and tests/integration **clean**. Signed-off-by: Johnny Richard --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index ea6ba53..662d039 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,12 @@ unit-test: $(MAKE) $(MAKE) -C tests/unit/ +.PHONY: clean +clean: + $(MAKE) -C tests/integration/ clean + $(MAKE) -C tests/unit/ clean + @rm -rf build/ 0c + .PHONY: check check: $(MAKE) -- 2.43.2