From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from integral2.. (unknown [36.81.65.188]) by gnuweeb.org (Postfix) with ESMTPSA id 774D17E330; Fri, 8 Jul 2022 12:10:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1657282256; bh=Fv69xAWMCXM7UstON/kuAqhdIQORyPpLIBl1JKTfetU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=L9gur7DUP/D9y+CF0npr7bh+KEYIgKYiivSVmvUZeasY+jrO0mFdzlKuw8RbYDcO6 bWsb7MGhlBTiFPZPsa2jy0xxNb97I+7pG+us/OuQxAtN7vAjHWOZuNiF1DcHYR4JBr wBqEwXPSfbtHalTsJG40VjXXX8D6vklh+eEsd93L0YxWyXgUNPIg6YeoOaQuVncL4n efmLlZGYkJBC8XWNJHrWFwT9fnaLmSJJJsZ8yNd5dOPc9+to/ovrQj5GyFKs1WHm3r fL5Y91savXrrj1pkAEt+6EePjDCQlSEimZxhfn59dksOoNKou/vTNXsGD6NqqYMrDI A4l4VMp6x+3Aw== From: Ammar Faizi To: GNU/Weeb Mailing List Cc: Ammar Faizi , Alviro Iskandar Setiawan , Arthur Lapz , Fernanda Ma'rouf , Sprite , Yonle Subject: [PATCH gwhttpd 07/14] Makefile: Add "make clean" command Date: Fri, 8 Jul 2022 19:10:18 +0700 Message-Id: <20220708121025.926162-8-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220708121025.926162-1-ammarfaizi2@gnuweeb.org> References: <20220708121025.926162-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Add a command to clean the binary file. Signed-off-by: Ammar Faizi --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 14522cb..28cc0c8 100644 --- a/Makefile +++ b/Makefile @@ -7,3 +7,6 @@ endif gwhttpd: gwhttpd.cpp $(CXX) $(CXXFLAGS) -o $(@) $(^) + +clean: + rm -vf gwhttpd -- Ammar Faizi