blob: ac9e70a7189e8240a008e0c596b111f0b8d4131c [file] [log] [blame]
Patrick Williams8e7b46e2023-05-01 14:19:06 -05001From 3b74181d626f7dedb47377450ca7c43457a66cda Mon Sep 17 00:00:00 2001
2From: Markus Volk <f_L_K@t-online.de>
3Date: Sat, 1 Apr 2023 04:42:32 +0200
4Subject: [PATCH] Makefile: add clean target
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 Makefile | 4 +++-
10 1 file changed, 3 insertions(+), 1 deletion(-)
11
12diff --git a/Makefile b/Makefile
13index a51c2c9..fbe2aec 100644
14--- a/Makefile
15+++ b/Makefile
16@@ -19,5 +19,7 @@ install: all
17 uninstall:
18 rm -rf '$(DESTDIR)$(PREFIX)/include/ffnvcodec' '$(DESTDIR)$(PREFIX)/$(LIBDIR)/pkgconfig/ffnvcodec.pc'
19
20-.PHONY: all install uninstall
21+clean: uninstall
22+
23+.PHONY: all clean install uninstall
24
25--
262.34.1
27