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.mta1.migadu.com (out-182.mta1.migadu.com [95.215.58.182]) by mail-a.sr.ht (Postfix) with ESMTPS id 95D2C20207 for <~johnnyrichard/olang-devel@lists.sr.ht>; Tue, 27 Feb 2024 19:00:23 +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=1709060421; 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=z4YVsOdKzMP9V+SMAz0vw+rjsdNC5ApWtKMm4K42Xb8uBZRdXo9x7Mo1m3kxCRSE0a9Dwu 5Ocvm3Endt0WzZsPMi0CneYebmzIHUjm4frh78xEjqaRRAuVHa1BhOAflmMfykM8Dt8K74 aO/8gWGwAnfa3UMqIoxaK72ZiT+dTMvSsrqA2+hDGGVfbHZL4ieJl3CgoMANw/MMbUYOC2 LStDWDUM4d/L6Q99YWunYDUwJXeB9OOxJbG3uvW7o3+rHXc3EsIAY7Di44BUp1gl2c2wuM pA/V8H+PQ9lCKHAlxn+cGEYGvyITNLYCfV1spqUdBNNka0QIFN2t1WXqPoD1kA== From: Johnny Richard To: ~johnnyrichard/olang-devel@lists.sr.ht Cc: Johnny Richard Subject: [PATCH olang v2 1/2] build: add clean target on root Makefile Date: Tue, 27 Feb 2024 20:59:07 +0100 Message-ID: <20240227195958.12551-2-johnny@johnnyrichard.com> In-Reply-To: <20240227195958.12551-1-johnny@johnnyrichard.com> References: <20240227195958.12551-1-johnny@johnnyrichard.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-TUID: 5NSvR+7I4rJ5 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