From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by passt.top (Postfix) with ESMTP id 2713E5A005E for ; Thu, 17 Nov 2022 13:26:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1668687982; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Q/3GRiqQGGTtMnnmQQCHEfn6Qewsm+qkTW9pc7AVIE0=; b=ZFQZNa+TpnCRUrfNdnJeLhEIt6DErkwgVVdDXGrq1OB+0Uy5dJeBX0ajuaTszUH/ekpdDq ExKMgvX6/po62hQXn+r0+GcIjPiOZ1Ekup95zeGy+6EZ39UhJxAeKsJRuEnBi6YORHHDPL nrHZ3pKHbqMWttnEB1t0iAiXAYLMz+8= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-359-KwTM0PUgMq-hbzhc7HVV9Q-1; Thu, 17 Nov 2022 07:26:20 -0500 X-MC-Unique: KwTM0PUgMq-hbzhc7HVV9Q-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 37FFA382C96A for ; Thu, 17 Nov 2022 12:26:20 +0000 (UTC) Received: from pick.home.annexia.org (unknown [10.39.193.198]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7D2D3C2C7D9; Thu, 17 Nov 2022 12:26:19 +0000 (UTC) From: "Richard W.M. Jones" To: sbrivio@redhat.com Subject: [PATCH passt 2/5] build: Remove *~ files with make clean Date: Thu, 17 Nov 2022 12:26:11 +0000 Message-Id: <20221117122614.1269214-3-rjones@redhat.com> In-Reply-To: <20221117122614.1269214-1-rjones@redhat.com> References: <20221117122614.1269214-1-rjones@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-MailFrom: rjones@redhat.com X-Mailman-Rule-Hits: nonmember-moderation X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation Message-ID-Hash: WUDQWP3QZSKTOTWOJQ6FXMRCOHZLSZK5 X-Message-ID-Hash: WUDQWP3QZSKTOTWOJQ6FXMRCOHZLSZK5 X-Mailman-Approved-At: Thu, 17 Nov 2022 13:28:25 +0100 CC: passt-dev@passt.top X-Mailman-Version: 3.3.3 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: These files are left around by emacs amongst other editors. Signed-off-by: Richard W.M. Jones --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c13a818..e370f0a 100644 --- a/Makefile +++ b/Makefile @@ -144,7 +144,7 @@ valgrind: all .PHONY: clean clean: - $(RM) $(BIN) *.o seccomp.h pasta.1 \ + $(RM) $(BIN) *~ *.o seccomp.h pasta.1 \ passt.tar passt.tar.gz *.deb *.rpm \ passt.pid README.plain.md -- 2.37.0.rc2